From fce40c7d6c09da427bfc46e57e6e175e953be59b Mon Sep 17 00:00:00 2001 From: ZhuJW Date: Fri, 10 Jul 2026 18:55:55 +0800 Subject: [PATCH] init --- .gitignore | 5 + backend/.env | 29 + backend/Dockerfile | 44 + backend/app/__init__.py | 87 + backend/app/blueprints/__init__.py | 0 backend/app/blueprints/accident/__init__.py | 12 + backend/app/blueprints/accident/routes.py | 606 + backend/app/blueprints/auth/__init__.py | 0 backend/app/blueprints/auth/routes.py | 335 + .../app/blueprints/file_uploads/__init__.py | 0 backend/app/blueprints/file_uploads/routes.py | 261 + .../app/blueprints/incident_gen5/__init__.py | 0 .../app/blueprints/incident_gen5/routes.py | 123 + .../app/blueprints/incident_gen5/service.py | 447 + .../app/blueprints/incident_gen6/__init__.py | 12 + .../app/blueprints/incident_gen6/histro.json | 12447 ++++ .../incident_gen6/incident_sample.json | 48726 +++++++++++++ .../app/blueprints/incident_gen6/routes.py | 333 + .../app/blueprints/incident_gen6/service.py | 427 + .../incident_gen6/singal_value.json | 164 + backend/app/blueprints/login/__init__.py | 0 backend/app/blueprints/login/routes.py | 144 + backend/app/blueprints/oauth/__init__.py | 0 backend/app/blueprints/oauth/routes.py | 285 + backend/app/config.py | 89 + backend/app/link_wedata_utils.py | 132 + backend/app/models.py | 590 + backend/app/services/__init__.py | 0 backend/app/services/remote_service.py | 128 + backend/app/utils.py | 115 + backend/entrypoint.sh | 58 + backend/init_db.py | 20 + backend/logs/app.log | 0 backend/prod.env | 32 + backend/requirements.txt | Bin 0 -> 2262 bytes backend/run.py | 28 + backend/schema.sql | 144 + default.conf | 60 + frontend/.commitlintrc | 23 + frontend/.env | 4 + frontend/.env.development | 22 + frontend/.env.production | 14 + frontend/.github/FUNDING.yml | 5 + frontend/.github/workflows/deploy.yml | 30 + frontend/.github/workflows/issue-close.yml | 20 + frontend/.github/workflows/lint.yml | 27 + frontend/.github/workflows/release.yml | 25 + frontend/.husky/commit-msg | 3 + frontend/.husky/pre-commit | 3 + frontend/.npmrc | 4 + frontend/CHANGELOG.md | 1374 + frontend/Dockerfile | 8 + frontend/LICENSE | 21 + frontend/README.md | 98 + frontend/README.zh-CN.md | 97 + frontend/default.conf | 45 + frontend/eslint.config.ts | 21 + frontend/index.html | 22 + frontend/package.json | 101 + frontend/plugins/constants.ts | 5 + frontend/plugins/index.ts | 52 + frontend/plugins/vite-build-info.ts | 207 + frontend/pnpm-lock.yaml | 12774 ++++ frontend/pnpm-workspace.yaml | 2 + frontend/public/_app.config.js | 0 frontend/public/loading.js | 211 + frontend/public/logo.png | Bin 0 -> 81432 bytes frontend/scripts/dir-tree.ts | 23 + frontend/scripts/gen-unocss.ts | 35 + frontend/scripts/to-js.ts | 17 + frontend/servers/routes/401.ts | 10 + frontend/servers/routes/403.ts | 9 + frontend/servers/routes/500.ts | 9 + frontend/servers/routes/index.ts | 5 + frontend/servers/routes/list/[id].delete.ts | 16 + .../servers/routes/list/basic-list.post.ts | 80 + .../servers/routes/list/consult-list.post.ts | 82 + frontend/servers/routes/list/create.post.ts | 10 + .../servers/routes/list/crud-table.post.ts | 63 + frontend/servers/routes/list/index.post.ts | 22 + frontend/servers/routes/list/index.put.ts | 8 + frontend/servers/routes/login.post.ts | 33 + frontend/servers/routes/logout.ts | 8 + frontend/servers/routes/menu/index.ts | 474 + frontend/servers/routes/test.delete.ts | 8 + frontend/servers/routes/test.post.ts | 8 + frontend/servers/routes/test.put.ts | 8 + frontend/servers/routes/user/info.ts | 24 + frontend/src/App.vue | 19 + frontend/src/api/accident/dict-list.ts | 76 + frontend/src/api/common/login.ts | 37 + frontend/src/api/common/menu.ts | 5 + frontend/src/api/common/user.ts | 11 + frontend/src/api/dashboard/analysis.ts | 26 + frontend/src/api/list/basic-list.ts | 12 + frontend/src/api/list/crud-table.ts | 30 + frontend/src/api/list/table-list.ts | 46 + frontend/src/api/oauth/login.ts | 3 + frontend/src/api/report/incident.ts | 23 + frontend/src/api/test.ts | 23 + frontend/src/assets/images/login-left.png | Bin 0 -> 157398 bytes frontend/src/assets/styles/motion.css | 61 + frontend/src/assets/styles/reset.css | 42 + frontend/src/assets/vue.svg | 1 + frontend/src/components/access/index.vue | 12 + .../src/components/base-loading/index.vue | 96 + .../base-loading/spin/chase-spin.vue | 101 + .../base-loading/spin/cube-spin.vue | 83 + .../components/base-loading/spin/dot-spin.vue | 132 + .../base-loading/spin/plane-spin.vue | 36 + .../base-loading/spin/preloader-spin.vue | 68 + .../base-loading/spin/pulse-spin.vue | 49 + .../base-loading/spin/rect-spin.vue | 57 + frontend/src/components/doc-link/index.vue | 13 + frontend/src/components/footer-links.vue | 15 + .../src/components/footer-tool-bar/index.less | 21 + .../src/components/footer-tool-bar/index.md | 15 + .../src/components/footer-tool-bar/index.vue | 44 + frontend/src/components/gitee-link/index.vue | 12 + frontend/src/components/github-link/index.vue | 13 + .../src/components/icons/carbon-language.vue | 9 + frontend/src/components/icons/carbon-moon.vue | 9 + frontend/src/components/icons/carbon-sun.vue | 9 + .../src/components/page-container/context.ts | 10 + .../src/components/page-container/index.vue | 125 + frontend/src/components/select-lang/index.vue | 34 + .../src/components/token-provider/index.vue | 25 + .../token-provider/token-to-cssvar.ts | 29 + frontend/src/components/user-avatar/index.vue | 98 + .../src/components/virtual-list/index.vue | 167 + frontend/src/composables/access.ts | 16 + frontend/src/composables/antd-token.ts | 14 + frontend/src/composables/api.ts | 8 + frontend/src/composables/authorization.ts | 3 + frontend/src/composables/base-loading.ts | 51 + frontend/src/composables/comp-consumer.ts | 40 + frontend/src/composables/current-route.ts | 15 + frontend/src/composables/global-config.ts | 36 + frontend/src/composables/i18n-locale.ts | 78 + frontend/src/composables/loading.ts | 20 + frontend/src/composables/meta-title.ts | 12 + frontend/src/composables/query-breakpoints.ts | 25 + frontend/src/composables/table-query.ts | 189 + frontend/src/composables/theme.ts | 2 + frontend/src/config/default-setting.ts | 55 + frontend/src/directive/access.ts | 10 + frontend/src/directive/index.ts | 2 + frontend/src/directive/loading.ts | 49 + frontend/src/enums/http-enum.ts | 21 + frontend/src/enums/loading-enum.ts | 29 + frontend/src/layouts/basic-layout/context.ts | 171 + frontend/src/layouts/basic-layout/index.less | 37 + frontend/src/layouts/basic-layout/index.vue | 92 + .../basic-layout/parent-comp-consumer.ts | 45 + frontend/src/layouts/basic-layout/typing.ts | 99 + .../layouts/components/drawer-menu/index.vue | 17 + .../components/global-footer/index.less | 43 + .../components/global-footer/index.vue | 29 + .../global-header/global-header-logo.vue | 18 + .../components/global-header/index.less | 133 + .../components/global-header/index.vue | 43 + .../src/layouts/components/header/index.less | 12 + .../src/layouts/components/header/index.vue | 83 + .../layouts/components/menu/async-icon.vue | 24 + .../src/layouts/components/menu/index.vue | 31 + .../layouts/components/menu/split-menu.vue | 36 + .../src/layouts/components/menu/sub-menu.vue | 76 + .../src/layouts/components/route-view.vue | 28 + .../setting-drawer/block-checkbox.vue | 32 + .../components/setting-drawer/body.vue | 14 + .../setting-drawer/color-checkbox.vue | 9 + .../components/setting-drawer/index.less | 187 + .../components/setting-drawer/index.vue | 252 + .../setting-drawer/layout-setting.vue | 159 + .../setting-drawer/other-setting.vue | 50 + .../setting-drawer/regional-setting.vue | 103 + .../components/setting-drawer/theme-color.vue | 34 + .../layouts/components/sider-menu/index.less | 132 + .../layouts/components/sider-menu/index.vue | 115 + frontend/src/layouts/index.vue | 101 + frontend/src/layouts/multi-tab/index.vue | 195 + frontend/src/locales/index.ts | 65 + frontend/src/locales/lang/en-US.ts | 20 + frontend/src/locales/lang/global/en-US.ts | 137 + frontend/src/locales/lang/global/zh-CN.ts | 137 + frontend/src/locales/lang/pages/en-US.ts | 202 + frontend/src/locales/lang/pages/zh-CN.ts | 198 + frontend/src/locales/lang/zh-CN.ts | 20 + frontend/src/main.ts | 32 + frontend/src/pages/access/admin.vue | 8 + frontend/src/pages/access/common.vue | 46 + frontend/src/pages/access/user.vue | 8 + frontend/src/pages/accident/detail/index.vue | 130 + .../src/pages/accident/dict-item/index.vue | 333 + frontend/src/pages/accident/insert/index.vue | 481 + .../accident/search/components/category.vue | 113 + .../components/search-list-container.vue | 42 + frontend/src/pages/accident/search/list.vue | 125 + frontend/src/pages/account/center.vue | 162 + .../account/components/account-setting.vue | 66 + .../account/components/application-tab.vue | 53 + .../pages/account/components/article-tab.vue | 55 + .../account/components/basic-setting.vue | 131 + .../account/components/message-setting.vue | 48 + .../src/pages/account/components/pro-tab.vue | 29 + .../account/components/right-content.vue | 58 + .../account/components/security-setting.vue | 62 + frontend/src/pages/account/settings.vue | 72 + frontend/src/pages/common/callback.vue | 68 + frontend/src/pages/common/iframe.vue | 35 + frontend/src/pages/common/locales/en-US.ts | 27 + frontend/src/pages/common/locales/zh-CN.ts | 27 + frontend/src/pages/common/login-origin.vue | 339 + frontend/src/pages/common/login.vue | 42 + frontend/src/pages/common/redirect.vue | 15 + frontend/src/pages/common/route-view.vue | 9 + frontend/src/pages/comps/loading.vue | 80 + .../analysis/components/chart-card.vue | 126 + .../analysis/components/custom-line.vue | 39 + .../components/custom-ring-progress.vue | 33 + .../dashboard/analysis/components/field.vue | 37 + .../analysis/components/top-search.vue | 510 + .../src/pages/dashboard/analysis/index.vue | 47 + .../dashboard/analysis/introduce-row.vue | 171 + .../pages/dashboard/analysis/number-info.vue | 105 + .../pages/dashboard/analysis/offline-data.vue | 318 + .../dashboard/analysis/proportion-sales.vue | 198 + .../pages/dashboard/analysis/sales-card.vue | 434 + .../src/pages/dashboard/analysis/trend.vue | 65 + .../pages/dashboard/monitor/active-chart.vue | 145 + .../pages/dashboard/monitor/custom-map.vue | 116 + .../src/pages/dashboard/monitor/index.vue | 719 + .../src/pages/dashboard/monitor/map-data.ts | 8007 +++ .../src/pages/dashboard/monitor/map-grid.ts | 56937 ++++++++++++++++ .../workplace/editable-link-group.vue | 58 + .../src/pages/dashboard/workplace/index.vue | 688 + frontend/src/pages/exception/401.vue | 18 + frontend/src/pages/exception/403.vue | 98 + frontend/src/pages/exception/404.vue | 18 + frontend/src/pages/exception/500.vue | 18 + .../src/pages/exception/component-error.vue | 7 + frontend/src/pages/exception/error.vue | 18 + .../src/pages/form/advanced-form/index.vue | 137 + .../form/advanced-form/repository-form.vue | 139 + .../pages/form/advanced-form/task-form.vue | 129 + frontend/src/pages/form/basic-form/index.vue | 164 + .../pages/form/step-form/components/step1.vue | 116 + .../pages/form/step-form/components/step2.vue | 99 + .../pages/form/step-form/components/step3.vue | 77 + frontend/src/pages/form/step-form/index.vue | 54 + frontend/src/pages/gen5/data.vue | 356 + frontend/src/pages/gen5/linepic.vue | 551 + frontend/src/pages/gen5/logging.vue | 208 + frontend/src/pages/list/basic-list.vue | 342 + frontend/src/pages/list/card-list.vue | 91 + .../list/components/crud-table-modal.vue | 73 + frontend/src/pages/list/crud-table.vue | 149 + .../pages/list/search-list/applications.vue | 365 + .../src/pages/list/search-list/articles.vue | 258 + .../list/search-list/components/category.vue | 111 + .../components/search-list-container.vue | 43 + frontend/src/pages/list/search-list/index.vue | 17 + .../src/pages/list/search-list/projects.vue | 350 + frontend/src/pages/list/table-list.vue | 383 + frontend/src/pages/menu/menu-1-1/menu1.vue | 10 + frontend/src/pages/menu/menu-1-1/menu2.vue | 10 + frontend/src/pages/menu/menu-2-1/menu1.vue | 10 + frontend/src/pages/menu/menu-2-1/menu2.vue | 10 + frontend/src/pages/menu/menu1.vue | 10 + frontend/src/pages/menu/menu2.vue | 10 + .../components/advanced-container.vue | 19 + .../advanced/components/header-info.vue | 91 + .../profile/advanced/components/log-card.vue | 97 + .../advanced/components/phone-data.vue | 80 + .../profile/advanced/components/step-card.vue | 55 + .../profile/advanced/components/user-info.vue | 87 + frontend/src/pages/profile/advanced/index.vue | 11 + frontend/src/pages/profile/basic/index.vue | 84 + frontend/src/pages/report/data.vue | 424 + frontend/src/pages/report/histoline.vue | 554 + frontend/src/pages/report/linepic.vue | 421 + frontend/src/pages/report/locationmap.vue | 1044 + frontend/src/pages/report/logging.vue | 208 + frontend/src/pages/result/fail.vue | 38 + frontend/src/pages/result/success.vue | 82 + frontend/src/router/constant.ts | 13 + frontend/src/router/dynamic-routes.ts | 65 + frontend/src/router/dynamic-routes_bak.ts | 491 + frontend/src/router/generate-route.ts | 247 + frontend/src/router/index.ts | 44 + frontend/src/router/router-guard.ts | 163 + frontend/src/router/router-guard_bak.ts | 163 + frontend/src/router/router-modules.ts | 50 + frontend/src/router/static-routes.ts | 50 + frontend/src/stores/app.ts | 199 + frontend/src/stores/auth.ts | 96 + frontend/src/stores/layout-menu.ts | 112 + frontend/src/stores/multi-tab.ts | 164 + frontend/src/stores/user.ts | 153 + frontend/src/utils/constant.ts | 19 + frontend/src/utils/loading.ts | 29 + frontend/src/utils/page-bubble.ts | 112 + frontend/src/utils/request.ts | 166 + frontend/src/utils/route-listener.ts | 30 + frontend/src/utils/tools.ts | 8 + frontend/src/utils/tree.ts | 12 + frontend/themes/antd-uno-theme.json | 72 + frontend/themes/color-theme-var.md | 68 + frontend/tsconfig.json | 34 + frontend/tsconfig.node.json | 10 + frontend/types/auto-imports.d.ts | 351 + frontend/types/components.d.ts | 108 + frontend/types/env.d.ts | 21 + frontend/types/route.d.ts | 26 + frontend/unocss.config.ts | 39 + frontend/vercel.json | 20 + frontend/vite.config.ts | 147 + 317 files changed, 170079 insertions(+) create mode 100644 .gitignore create mode 100644 backend/.env create mode 100644 backend/Dockerfile create mode 100644 backend/app/__init__.py create mode 100644 backend/app/blueprints/__init__.py create mode 100644 backend/app/blueprints/accident/__init__.py create mode 100644 backend/app/blueprints/accident/routes.py create mode 100644 backend/app/blueprints/auth/__init__.py create mode 100644 backend/app/blueprints/auth/routes.py create mode 100644 backend/app/blueprints/file_uploads/__init__.py create mode 100644 backend/app/blueprints/file_uploads/routes.py create mode 100644 backend/app/blueprints/incident_gen5/__init__.py create mode 100644 backend/app/blueprints/incident_gen5/routes.py create mode 100644 backend/app/blueprints/incident_gen5/service.py create mode 100644 backend/app/blueprints/incident_gen6/__init__.py create mode 100644 backend/app/blueprints/incident_gen6/histro.json create mode 100644 backend/app/blueprints/incident_gen6/incident_sample.json create mode 100644 backend/app/blueprints/incident_gen6/routes.py create mode 100644 backend/app/blueprints/incident_gen6/service.py create mode 100644 backend/app/blueprints/incident_gen6/singal_value.json create mode 100644 backend/app/blueprints/login/__init__.py create mode 100644 backend/app/blueprints/login/routes.py create mode 100644 backend/app/blueprints/oauth/__init__.py create mode 100644 backend/app/blueprints/oauth/routes.py create mode 100644 backend/app/config.py create mode 100644 backend/app/link_wedata_utils.py create mode 100644 backend/app/models.py create mode 100644 backend/app/services/__init__.py create mode 100644 backend/app/services/remote_service.py create mode 100644 backend/app/utils.py create mode 100644 backend/entrypoint.sh create mode 100644 backend/init_db.py create mode 100644 backend/logs/app.log create mode 100644 backend/prod.env create mode 100644 backend/requirements.txt create mode 100644 backend/run.py create mode 100644 backend/schema.sql create mode 100644 default.conf create mode 100644 frontend/.commitlintrc create mode 100644 frontend/.env create mode 100644 frontend/.env.development create mode 100644 frontend/.env.production create mode 100644 frontend/.github/FUNDING.yml create mode 100644 frontend/.github/workflows/deploy.yml create mode 100644 frontend/.github/workflows/issue-close.yml create mode 100644 frontend/.github/workflows/lint.yml create mode 100644 frontend/.github/workflows/release.yml create mode 100644 frontend/.husky/commit-msg create mode 100644 frontend/.husky/pre-commit create mode 100644 frontend/.npmrc create mode 100644 frontend/CHANGELOG.md create mode 100644 frontend/Dockerfile create mode 100644 frontend/LICENSE create mode 100644 frontend/README.md create mode 100644 frontend/README.zh-CN.md create mode 100644 frontend/default.conf create mode 100644 frontend/eslint.config.ts create mode 100644 frontend/index.html create mode 100644 frontend/package.json create mode 100644 frontend/plugins/constants.ts create mode 100644 frontend/plugins/index.ts create mode 100644 frontend/plugins/vite-build-info.ts create mode 100644 frontend/pnpm-lock.yaml create mode 100644 frontend/pnpm-workspace.yaml create mode 100644 frontend/public/_app.config.js create mode 100644 frontend/public/loading.js create mode 100644 frontend/public/logo.png create mode 100644 frontend/scripts/dir-tree.ts create mode 100644 frontend/scripts/gen-unocss.ts create mode 100644 frontend/scripts/to-js.ts create mode 100644 frontend/servers/routes/401.ts create mode 100644 frontend/servers/routes/403.ts create mode 100644 frontend/servers/routes/500.ts create mode 100644 frontend/servers/routes/index.ts create mode 100644 frontend/servers/routes/list/[id].delete.ts create mode 100644 frontend/servers/routes/list/basic-list.post.ts create mode 100644 frontend/servers/routes/list/consult-list.post.ts create mode 100644 frontend/servers/routes/list/create.post.ts create mode 100644 frontend/servers/routes/list/crud-table.post.ts create mode 100644 frontend/servers/routes/list/index.post.ts create mode 100644 frontend/servers/routes/list/index.put.ts create mode 100644 frontend/servers/routes/login.post.ts create mode 100644 frontend/servers/routes/logout.ts create mode 100644 frontend/servers/routes/menu/index.ts create mode 100644 frontend/servers/routes/test.delete.ts create mode 100644 frontend/servers/routes/test.post.ts create mode 100644 frontend/servers/routes/test.put.ts create mode 100644 frontend/servers/routes/user/info.ts create mode 100644 frontend/src/App.vue create mode 100644 frontend/src/api/accident/dict-list.ts create mode 100644 frontend/src/api/common/login.ts create mode 100644 frontend/src/api/common/menu.ts create mode 100644 frontend/src/api/common/user.ts create mode 100644 frontend/src/api/dashboard/analysis.ts create mode 100644 frontend/src/api/list/basic-list.ts create mode 100644 frontend/src/api/list/crud-table.ts create mode 100644 frontend/src/api/list/table-list.ts create mode 100644 frontend/src/api/oauth/login.ts create mode 100644 frontend/src/api/report/incident.ts create mode 100644 frontend/src/api/test.ts create mode 100644 frontend/src/assets/images/login-left.png create mode 100644 frontend/src/assets/styles/motion.css create mode 100644 frontend/src/assets/styles/reset.css create mode 100644 frontend/src/assets/vue.svg create mode 100644 frontend/src/components/access/index.vue create mode 100644 frontend/src/components/base-loading/index.vue create mode 100644 frontend/src/components/base-loading/spin/chase-spin.vue create mode 100644 frontend/src/components/base-loading/spin/cube-spin.vue create mode 100644 frontend/src/components/base-loading/spin/dot-spin.vue create mode 100644 frontend/src/components/base-loading/spin/plane-spin.vue create mode 100644 frontend/src/components/base-loading/spin/preloader-spin.vue create mode 100644 frontend/src/components/base-loading/spin/pulse-spin.vue create mode 100644 frontend/src/components/base-loading/spin/rect-spin.vue create mode 100644 frontend/src/components/doc-link/index.vue create mode 100644 frontend/src/components/footer-links.vue create mode 100644 frontend/src/components/footer-tool-bar/index.less create mode 100644 frontend/src/components/footer-tool-bar/index.md create mode 100644 frontend/src/components/footer-tool-bar/index.vue create mode 100644 frontend/src/components/gitee-link/index.vue create mode 100644 frontend/src/components/github-link/index.vue create mode 100644 frontend/src/components/icons/carbon-language.vue create mode 100644 frontend/src/components/icons/carbon-moon.vue create mode 100644 frontend/src/components/icons/carbon-sun.vue create mode 100644 frontend/src/components/page-container/context.ts create mode 100644 frontend/src/components/page-container/index.vue create mode 100644 frontend/src/components/select-lang/index.vue create mode 100644 frontend/src/components/token-provider/index.vue create mode 100644 frontend/src/components/token-provider/token-to-cssvar.ts create mode 100644 frontend/src/components/user-avatar/index.vue create mode 100644 frontend/src/components/virtual-list/index.vue create mode 100644 frontend/src/composables/access.ts create mode 100644 frontend/src/composables/antd-token.ts create mode 100644 frontend/src/composables/api.ts create mode 100644 frontend/src/composables/authorization.ts create mode 100644 frontend/src/composables/base-loading.ts create mode 100644 frontend/src/composables/comp-consumer.ts create mode 100644 frontend/src/composables/current-route.ts create mode 100644 frontend/src/composables/global-config.ts create mode 100644 frontend/src/composables/i18n-locale.ts create mode 100644 frontend/src/composables/loading.ts create mode 100644 frontend/src/composables/meta-title.ts create mode 100644 frontend/src/composables/query-breakpoints.ts create mode 100644 frontend/src/composables/table-query.ts create mode 100644 frontend/src/composables/theme.ts create mode 100644 frontend/src/config/default-setting.ts create mode 100644 frontend/src/directive/access.ts create mode 100644 frontend/src/directive/index.ts create mode 100644 frontend/src/directive/loading.ts create mode 100644 frontend/src/enums/http-enum.ts create mode 100644 frontend/src/enums/loading-enum.ts create mode 100644 frontend/src/layouts/basic-layout/context.ts create mode 100644 frontend/src/layouts/basic-layout/index.less create mode 100644 frontend/src/layouts/basic-layout/index.vue create mode 100644 frontend/src/layouts/basic-layout/parent-comp-consumer.ts create mode 100644 frontend/src/layouts/basic-layout/typing.ts create mode 100644 frontend/src/layouts/components/drawer-menu/index.vue create mode 100644 frontend/src/layouts/components/global-footer/index.less create mode 100644 frontend/src/layouts/components/global-footer/index.vue create mode 100644 frontend/src/layouts/components/global-header/global-header-logo.vue create mode 100644 frontend/src/layouts/components/global-header/index.less create mode 100644 frontend/src/layouts/components/global-header/index.vue create mode 100644 frontend/src/layouts/components/header/index.less create mode 100644 frontend/src/layouts/components/header/index.vue create mode 100644 frontend/src/layouts/components/menu/async-icon.vue create mode 100644 frontend/src/layouts/components/menu/index.vue create mode 100644 frontend/src/layouts/components/menu/split-menu.vue create mode 100644 frontend/src/layouts/components/menu/sub-menu.vue create mode 100644 frontend/src/layouts/components/route-view.vue create mode 100644 frontend/src/layouts/components/setting-drawer/block-checkbox.vue create mode 100644 frontend/src/layouts/components/setting-drawer/body.vue create mode 100644 frontend/src/layouts/components/setting-drawer/color-checkbox.vue create mode 100644 frontend/src/layouts/components/setting-drawer/index.less create mode 100644 frontend/src/layouts/components/setting-drawer/index.vue create mode 100644 frontend/src/layouts/components/setting-drawer/layout-setting.vue create mode 100644 frontend/src/layouts/components/setting-drawer/other-setting.vue create mode 100644 frontend/src/layouts/components/setting-drawer/regional-setting.vue create mode 100644 frontend/src/layouts/components/setting-drawer/theme-color.vue create mode 100644 frontend/src/layouts/components/sider-menu/index.less create mode 100644 frontend/src/layouts/components/sider-menu/index.vue create mode 100644 frontend/src/layouts/index.vue create mode 100644 frontend/src/layouts/multi-tab/index.vue create mode 100644 frontend/src/locales/index.ts create mode 100644 frontend/src/locales/lang/en-US.ts create mode 100644 frontend/src/locales/lang/global/en-US.ts create mode 100644 frontend/src/locales/lang/global/zh-CN.ts create mode 100644 frontend/src/locales/lang/pages/en-US.ts create mode 100644 frontend/src/locales/lang/pages/zh-CN.ts create mode 100644 frontend/src/locales/lang/zh-CN.ts create mode 100644 frontend/src/main.ts create mode 100644 frontend/src/pages/access/admin.vue create mode 100644 frontend/src/pages/access/common.vue create mode 100644 frontend/src/pages/access/user.vue create mode 100644 frontend/src/pages/accident/detail/index.vue create mode 100644 frontend/src/pages/accident/dict-item/index.vue create mode 100644 frontend/src/pages/accident/insert/index.vue create mode 100644 frontend/src/pages/accident/search/components/category.vue create mode 100644 frontend/src/pages/accident/search/components/search-list-container.vue create mode 100644 frontend/src/pages/accident/search/list.vue create mode 100644 frontend/src/pages/account/center.vue create mode 100644 frontend/src/pages/account/components/account-setting.vue create mode 100644 frontend/src/pages/account/components/application-tab.vue create mode 100644 frontend/src/pages/account/components/article-tab.vue create mode 100644 frontend/src/pages/account/components/basic-setting.vue create mode 100644 frontend/src/pages/account/components/message-setting.vue create mode 100644 frontend/src/pages/account/components/pro-tab.vue create mode 100644 frontend/src/pages/account/components/right-content.vue create mode 100644 frontend/src/pages/account/components/security-setting.vue create mode 100644 frontend/src/pages/account/settings.vue create mode 100644 frontend/src/pages/common/callback.vue create mode 100644 frontend/src/pages/common/iframe.vue create mode 100644 frontend/src/pages/common/locales/en-US.ts create mode 100644 frontend/src/pages/common/locales/zh-CN.ts create mode 100644 frontend/src/pages/common/login-origin.vue create mode 100644 frontend/src/pages/common/login.vue create mode 100644 frontend/src/pages/common/redirect.vue create mode 100644 frontend/src/pages/common/route-view.vue create mode 100644 frontend/src/pages/comps/loading.vue create mode 100644 frontend/src/pages/dashboard/analysis/components/chart-card.vue create mode 100644 frontend/src/pages/dashboard/analysis/components/custom-line.vue create mode 100644 frontend/src/pages/dashboard/analysis/components/custom-ring-progress.vue create mode 100644 frontend/src/pages/dashboard/analysis/components/field.vue create mode 100644 frontend/src/pages/dashboard/analysis/components/top-search.vue create mode 100644 frontend/src/pages/dashboard/analysis/index.vue create mode 100644 frontend/src/pages/dashboard/analysis/introduce-row.vue create mode 100644 frontend/src/pages/dashboard/analysis/number-info.vue create mode 100644 frontend/src/pages/dashboard/analysis/offline-data.vue create mode 100644 frontend/src/pages/dashboard/analysis/proportion-sales.vue create mode 100644 frontend/src/pages/dashboard/analysis/sales-card.vue create mode 100644 frontend/src/pages/dashboard/analysis/trend.vue create mode 100644 frontend/src/pages/dashboard/monitor/active-chart.vue create mode 100644 frontend/src/pages/dashboard/monitor/custom-map.vue create mode 100644 frontend/src/pages/dashboard/monitor/index.vue create mode 100644 frontend/src/pages/dashboard/monitor/map-data.ts create mode 100644 frontend/src/pages/dashboard/monitor/map-grid.ts create mode 100644 frontend/src/pages/dashboard/workplace/editable-link-group.vue create mode 100644 frontend/src/pages/dashboard/workplace/index.vue create mode 100644 frontend/src/pages/exception/401.vue create mode 100644 frontend/src/pages/exception/403.vue create mode 100644 frontend/src/pages/exception/404.vue create mode 100644 frontend/src/pages/exception/500.vue create mode 100644 frontend/src/pages/exception/component-error.vue create mode 100644 frontend/src/pages/exception/error.vue create mode 100644 frontend/src/pages/form/advanced-form/index.vue create mode 100644 frontend/src/pages/form/advanced-form/repository-form.vue create mode 100644 frontend/src/pages/form/advanced-form/task-form.vue create mode 100644 frontend/src/pages/form/basic-form/index.vue create mode 100644 frontend/src/pages/form/step-form/components/step1.vue create mode 100644 frontend/src/pages/form/step-form/components/step2.vue create mode 100644 frontend/src/pages/form/step-form/components/step3.vue create mode 100644 frontend/src/pages/form/step-form/index.vue create mode 100644 frontend/src/pages/gen5/data.vue create mode 100644 frontend/src/pages/gen5/linepic.vue create mode 100644 frontend/src/pages/gen5/logging.vue create mode 100644 frontend/src/pages/list/basic-list.vue create mode 100644 frontend/src/pages/list/card-list.vue create mode 100644 frontend/src/pages/list/components/crud-table-modal.vue create mode 100644 frontend/src/pages/list/crud-table.vue create mode 100644 frontend/src/pages/list/search-list/applications.vue create mode 100644 frontend/src/pages/list/search-list/articles.vue create mode 100644 frontend/src/pages/list/search-list/components/category.vue create mode 100644 frontend/src/pages/list/search-list/components/search-list-container.vue create mode 100644 frontend/src/pages/list/search-list/index.vue create mode 100644 frontend/src/pages/list/search-list/projects.vue create mode 100644 frontend/src/pages/list/table-list.vue create mode 100644 frontend/src/pages/menu/menu-1-1/menu1.vue create mode 100644 frontend/src/pages/menu/menu-1-1/menu2.vue create mode 100644 frontend/src/pages/menu/menu-2-1/menu1.vue create mode 100644 frontend/src/pages/menu/menu-2-1/menu2.vue create mode 100644 frontend/src/pages/menu/menu1.vue create mode 100644 frontend/src/pages/menu/menu2.vue create mode 100644 frontend/src/pages/profile/advanced/components/advanced-container.vue create mode 100644 frontend/src/pages/profile/advanced/components/header-info.vue create mode 100644 frontend/src/pages/profile/advanced/components/log-card.vue create mode 100644 frontend/src/pages/profile/advanced/components/phone-data.vue create mode 100644 frontend/src/pages/profile/advanced/components/step-card.vue create mode 100644 frontend/src/pages/profile/advanced/components/user-info.vue create mode 100644 frontend/src/pages/profile/advanced/index.vue create mode 100644 frontend/src/pages/profile/basic/index.vue create mode 100644 frontend/src/pages/report/data.vue create mode 100644 frontend/src/pages/report/histoline.vue create mode 100644 frontend/src/pages/report/linepic.vue create mode 100644 frontend/src/pages/report/locationmap.vue create mode 100644 frontend/src/pages/report/logging.vue create mode 100644 frontend/src/pages/result/fail.vue create mode 100644 frontend/src/pages/result/success.vue create mode 100644 frontend/src/router/constant.ts create mode 100644 frontend/src/router/dynamic-routes.ts create mode 100644 frontend/src/router/dynamic-routes_bak.ts create mode 100644 frontend/src/router/generate-route.ts create mode 100644 frontend/src/router/index.ts create mode 100644 frontend/src/router/router-guard.ts create mode 100644 frontend/src/router/router-guard_bak.ts create mode 100644 frontend/src/router/router-modules.ts create mode 100644 frontend/src/router/static-routes.ts create mode 100644 frontend/src/stores/app.ts create mode 100644 frontend/src/stores/auth.ts create mode 100644 frontend/src/stores/layout-menu.ts create mode 100644 frontend/src/stores/multi-tab.ts create mode 100644 frontend/src/stores/user.ts create mode 100644 frontend/src/utils/constant.ts create mode 100644 frontend/src/utils/loading.ts create mode 100644 frontend/src/utils/page-bubble.ts create mode 100644 frontend/src/utils/request.ts create mode 100644 frontend/src/utils/route-listener.ts create mode 100644 frontend/src/utils/tools.ts create mode 100644 frontend/src/utils/tree.ts create mode 100644 frontend/themes/antd-uno-theme.json create mode 100644 frontend/themes/color-theme-var.md create mode 100644 frontend/tsconfig.json create mode 100644 frontend/tsconfig.node.json create mode 100644 frontend/types/auto-imports.d.ts create mode 100644 frontend/types/components.d.ts create mode 100644 frontend/types/env.d.ts create mode 100644 frontend/types/route.d.ts create mode 100644 frontend/unocss.config.ts create mode 100644 frontend/vercel.json create mode 100644 frontend/vite.config.ts diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2d16bcb --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +**.venv +**.vscode +**/node_modules +__pycache__/ +*.py[cod] \ No newline at end of file diff --git a/backend/.env b/backend/.env new file mode 100644 index 0000000..d2cc8e2 --- /dev/null +++ b/backend/.env @@ -0,0 +1,29 @@ +FLASK_ENV=development + +# 集群配置 +DATABRICKS_TOKEN=dapi188523cfb1cf34ad5a605fd75c5c0d31 +CLUSTER_ID=1203-054146-wkjf95i0 +DATABRICKS_HOST=https://adb-3035612432650494.2.databricks.azure.cn + +# gen5 spark表的配置 +GEN5_TABLE_NAME=hive_metastore.taf_level_two_plus.accident_report_data + +# JWT配置 +JWT_SECRET_KEY=dev_mb_project_2025_xyz123 # 开发环境可随意,生产环境需复杂密钥 +SECRET_KEY=dev_mb_2025_abc789 + +# 数据库配置 +DATABASE_URL=mysql+pymysql://root:Tsystems_2026@150.158.121.95:3306/incident?charset=utf8mb4 + +# oauth2配置 +CLIENT_ID=A17336FC-A8D7-4CEA-8777-384BFEABABC1 +CLIENT_PASSWORD=U7-C1BZQdL8V5c.z~qA_64SO2l9F3J0o +#SSO 授权服务器地址 +SS0_HOST = https://ssoalpha.dvb.corpinter.net.cn/ +# 授权成功后,SSO 服务器重定向回你的应用的地址 (必须与 SSO 服务器上配置的一致) +REDIRECT_URL = http://localhost:5221/report +# 用户登录成功后,最终重定向到的前端页面地址 +DOMAIN = http://localhost:3001 + +# 前端请求头的key +HEADERS_SECRET_KEY=mbincid-server12 \ No newline at end of file diff --git a/backend/Dockerfile b/backend/Dockerfile new file mode 100644 index 0000000..9f75268 --- /dev/null +++ b/backend/Dockerfile @@ -0,0 +1,44 @@ +FROM python:3.11 + +# 1. 替换为腾讯云APT源 + 仅装时区依赖 +RUN sed -i 's/deb.debian.org/mirrors.tencent.com/g' /etc/apt/sources.list.d/debian.sources && \ + apt update && apt install -y --no-install-recommends tzdata && \ + rm -rf /var/lib/apt/lists/* + +# 2. 核心环境变量 +ENV PYTHONDONTWRITEBYTECODE=1 \ + PYTHONUNBUFFERED=1 \ + FLASK_APP=run:app \ + TZ=Asia/Shanghai + +# 3. 设置时区 +RUN ln -snf /usr/share/zoneinfo/${TZ} /etc/localtime && echo ${TZ} > /etc/timezone + +# 4. 工作目录 + 非root用户 +WORKDIR /app +RUN groupadd -r appuser && useradd -r -g appuser appuser && chown -R appuser:appuser /app + +# 新增图片存放地址 +RUN mkdir -p /app/logs /app/uploads \ + && chown -R appuser:appuser /app/logs /app/uploads \ + && chmod -R 777 /app/logs /app/uploads + +USER appuser + +# 5. 腾讯云PyPI源 + 极简提速依赖安装 +COPY --chown=appuser:appuser requirements.txt /app/ +RUN python -m venv /app/venv && \ + # /app/venv/bin/pip install --no-cache-dir --upgrade pip && \ + /app/venv/bin/pip install --no-cache-dir --prefer-binary -r requirements.txt -i https://mirrors.cloud.tencent.com/pypi/simple/ + +# 6. 复制项目文件 +COPY --chown=appuser:appuser . /app/ + +# 7. 切换非root用户 +USER appuser + +# 8. 暴露端口 +EXPOSE 5221 + +# 9. 启动Gunicorn +CMD ["/app/venv/bin/gunicorn", "--bind", "0.0.0.0:5221", "--workers", "7", "--threads", "2", "run:app"] \ No newline at end of file diff --git a/backend/app/__init__.py b/backend/app/__init__.py new file mode 100644 index 0000000..49b20b4 --- /dev/null +++ b/backend/app/__init__.py @@ -0,0 +1,87 @@ +from logging.handlers import RotatingFileHandler +import os +from flask import Flask, jsonify, request +from app.config import config +from app.services.remote_service import DatabricksQuery +from flask_sqlalchemy import SQLAlchemy +from flask_cors import CORS +from flask_jwt_extended import JWTManager +import logging + +db = SQLAlchemy() +jwt = JWTManager() + + +# 配置日志 +def setup_logging(app): + # 创建日志目录 + if not os.path.exists('logs'): + os.makedirs('logs') + + # 配置文件处理器 - 按大小轮转 + file_handler = RotatingFileHandler( + 'logs/app.log', + maxBytes=500*1024*1024, # 100MB + backupCount=10 + ) + file_handler.setLevel(logging.INFO) + + # 配置控制台处理器 + console_handler = logging.StreamHandler() + console_handler.setLevel(logging.DEBUG) + + # 设置日志格式 + formatter = logging.Formatter( + '%(asctime)s [%(levelname)s] %(funcName)s:%(lineno)d - %(message)s' + ) + file_handler.setFormatter(formatter) + console_handler.setFormatter(formatter) + + # 添加到app.logger + app.logger.addHandler(file_handler) + app.logger.addHandler(console_handler) + app.logger.setLevel(logging.DEBUG) + + # 禁止传播到root logger(避免重复日志) + app.logger.propagate = False + + # 记录启动信息 + # app.logger.info('Flask应用启动成功!') + + +def create_app(): + app = Flask(__name__) + app.config["JWT_SECRET_KEY"] = "your-secret-key" # 替换为你的密钥 + app.config["JWT_TOKEN_LOCATION"] = ["headers"] # 从请求头获取令牌 + app.config["JWT_HEADER_NAME"] = "Authorization" # 请求头字段名 + # 注意:这里可以将 JWT_HEADER_TYPE 设为空,避免强制要求 Bearer 前缀 + app.config["JWT_HEADER_TYPE"] = "" # 默认为 'Bearer',设为空则不强制前缀 + # 加载配置 + app.config.from_object(config) + db.init_app(app) + jwt.init_app(app) + + # 配置日志 + setup_logging(app) + + from app.blueprints.auth.routes import auth_bp + from app.blueprints.login.routes import login_bp + from app.blueprints.incident_gen5.routes import incident_gen5_bp + from app.blueprints.oauth.routes import oauth_bp + from app.blueprints.incident_gen6.routes import incident_gen6_bp + from app.blueprints.accident.routes import accident_bp + from app.blueprints.file_uploads.routes import file_uploads_bp + + domain_prefix='accidentportal/api' + + app.register_blueprint(auth_bp, url_prefix=f"/{domain_prefix}/api/auth") + app.register_blueprint(login_bp, url_prefix=f"/{domain_prefix}/user") + app.register_blueprint(incident_gen5_bp, url_prefix=f"/{domain_prefix}/gen5") + app.register_blueprint(incident_gen6_bp, url_prefix=f"/{domain_prefix}/gen6") + app.register_blueprint(oauth_bp, url_prefix="") + app.register_blueprint(accident_bp, url_prefix=f"/{domain_prefix}/accident") + app.register_blueprint(file_uploads_bp, url_prefix=f"/{domain_prefix}/file_uploads") + + CORS(app, supports_credentials=True) + + return app diff --git a/backend/app/blueprints/__init__.py b/backend/app/blueprints/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/app/blueprints/accident/__init__.py b/backend/app/blueprints/accident/__init__.py new file mode 100644 index 0000000..b81ad79 --- /dev/null +++ b/backend/app/blueprints/accident/__init__.py @@ -0,0 +1,12 @@ +from flask import Blueprint, json, jsonify, current_app, request +from app.blueprints.incident_gen5.service import ( + aggregate_and_sort_incidents, + aggregate_line_list, + get_logging_list, + process_incident_data, +) +from app.services.remote_service import DatabricksQuery +from app.utils import convert_incident_time_format + + +incident_bp = Blueprint("incident", __name__) \ No newline at end of file diff --git a/backend/app/blueprints/accident/routes.py b/backend/app/blueprints/accident/routes.py new file mode 100644 index 0000000..259a700 --- /dev/null +++ b/backend/app/blueprints/accident/routes.py @@ -0,0 +1,606 @@ +from concurrent.futures import ThreadPoolExecutor, as_completed +from datetime import datetime, timedelta, timezone +from operator import or_ +import traceback +from flask import Blueprint, json, jsonify, current_app, request +from sqlalchemy.exc import SQLAlchemyError +from app.models import AccidList, DictItem, DictType +from app import db + +accident_bp = Blueprint("accident_bp", __name__) + +@accident_bp.route("/item-list", methods=["POST"]) +def get_item_list(): + """ + 获取字典项列表接口(带分页) + 核心逻辑: + - dict_id和item_value都为空 → 全查所有启用的字典项 + - 有dict_id则按字典类型过滤,有item_value则按选项值过滤 + 参数/返回格式:(不变) + """ + try: + # 1. 接收并解析请求参数 + req_data = request.get_json() or {} + + # dict_id参数处理 + dict_id = req_data.get("dict_id") + try: + dict_id = int(dict_id) if dict_id is not None else None + except (ValueError, TypeError): + dict_id = None + + item_value = req_data.get("item_value", "").strip() + + # 分页参数校验 + try: + page = int(req_data.get("pageNum", 1)) + page_size = int(req_data.get("pageSize", 10)) + page = 1 if page < 1 else page + page_size = 10 if page_size < 1 else page_size + page_size = 50 if page_size > 50 else page_size + except ValueError: + page = 1 + page_size = 10 + + # 2. 构建查询条件(核心:无过滤则全查启用的字典项) + # 基础查询:仅过滤启用状态(status=1) + base_query = DictItem.query.filter(DictItem.status == 1) + + # 条件1:按dict_id过滤(有值才加) + if dict_id is not None: + dict_type = DictType.query.filter_by(id=dict_id, status=1).first() + if dict_type: + base_query = base_query.filter(DictItem.dict_id == dict_type.id) + else: + return jsonify({ + "code": 200, + "msg": "success", + "data": { + "list": [], + "pagination": {"page": page, "page_size": page_size, "total": 0, "total_pages": 0} + } + }) + + # 条件2:按item_value过滤(有值才加) + if item_value: + base_query = base_query.filter(DictItem.item_value == item_value) + + # 3. 分页查询(paginate简化版) + pagination_obj = base_query.order_by(DictItem.create_time.desc()).paginate( + page=page, per_page=page_size, error_out=False + ) + item_list = pagination_obj.items + total = pagination_obj.total + total_pages = pagination_obj.pages + + # 4. 格式化返回 + result_list = [item.to_dict() for item in item_list] + pagination = { + "page": page, + "page_size": page_size, + "total": total, + "total_pages": total_pages + } + + return jsonify({ + "code": 200, + "msg": "success", + "data": {"list": result_list, "pagination": pagination} + }) + + except Exception as e: + print(f"获取字典项列表失败:{str(e)}") + return jsonify({ + "code": 500, + "msg": "服务器内部错误", + "data": { + "list": [], + "pagination": {"page": 1, "page_size": 10, "total": 0, "total_pages": 0} + } + }) + + +@accident_bp.route("/all_dict_code", methods=["GET"]) +def get_all_dict_code(): + """ + 获取所有字典类型及对应字典项接口(无参数,返回全量数据) + 请求方式:GET + 返回格式: + { + "code": 200, // 200成功/500服务器错误 + "msg": "success", // 提示信息 + "data": [ // 所有字典类型+对应字典项列表 + { + "id": 1, // 字典类型ID + "dict_code": "carline", // 字典编码 + "status": 1, // 字典类型状态 + "items": [ // 该字典编码对应的所有字典项 + {"id": 101, "item_value": "大众帕萨特"}, + {"id": 102, "item_value": "丰田凯美瑞"} + ] + }, + { + "id": 2, + "dict_code": "labels", + "status": 1, + "items": [ + {"id": 201, "item_value": "碰撞",label:1,value:"123"}, + # {"id": 202, "item_value": "异响"} + ] + } + ] + } + """ + try: + # 1. 查询所有字典类型(按id升序) + dict_type_list = DictType.query.order_by(DictType.id.asc()).all() + + # 2. 格式化数据:关联查询每个字典类型对应的字典项 + result_data = [] + for dict_type in dict_type_list: + # 2.1 查询当前字典类型对应的所有字典项(过滤启用状态,按id升序) + dict_items = DictItem.query.filter( + DictItem.dict_id == dict_type.id, # 关联dict_type的id + DictItem.status == 1 # 仅返回启用的字典项(前端下拉常用) + ).order_by(DictItem.id.asc()).all() + + # 2.2 格式化字典项(仅保留id和item_value) + item_list = [ + { + "id": item.id, + "item_value": item.item_value, + "label":item.item_value, + "value":item.item_value, + } + for item in dict_items + ] + + # 2.3 组装当前字典类型的完整数据 + result_data.append({ + "id": dict_type.id, + "dict_code": dict_type.dict_code, + "status": dict_type.status, + "items": item_list # 新增:对应字典项的id和item_value + }) + + # 3. 返回标准化响应 + return jsonify({ + "code": 200, + "msg": "success", + "data": result_data + }) + + except Exception as e: + # 异常日志记录(生产环境替换为logging) + print(f"获取所有字典编码及对应项失败:{str(e)}") + # 异常时返回空数组,保证前端格式统一 + return jsonify({ + "code": 500, + "msg": "服务器内部错误", + "data": [] + }) + + +@accident_bp.route("/insert-dict", methods=["POST"]) +def insert_dict_type(): + """ + 新增/恢复字典项接口(新增逻辑优化:存在则恢复status=1,不存在则新增) + 请求参数(JSON格式): + { + "dict_id": 1, // 必传,字典类型ID(整数) + "item_value": "大众迈腾" // 必传,字典项值(非空字符串) + } + 返回格式: + { + "code": 200, // 200成功/400参数错误/500服务器错误 + "msg": "新增成功", // 提示信息(区分新增/更新) + "data": {} // 成功返回数据ID,失败返回空 + } + """ + try: + # 1. 接收并解析JSON请求参数 + req_data = request.get_json() + if not req_data: + return jsonify({ + "code": 400, + "msg": "请求参数不能为空,且必须为JSON格式", + "data": {} + }) + + # 2. 提取参数并做基础校验 + # 2.1 提取dict_id并校验(必传+整数) + dict_id = req_data.get("dict_id") + if dict_id is None: + return jsonify({ + "code": 400, + "msg": "dict_id为必传参数", + "data": {} + }) + try: + dict_id = int(dict_id) + except (ValueError, TypeError): + return jsonify({ + "code": 400, + "msg": "dict_id必须为整数", + "data": {} + }) + + # 2.2 提取item_value并校验(必传+非空) + item_value = req_data.get("item_value", "").strip() + if not item_value: + return jsonify({ + "code": 400, + "msg": "item_value为必传参数,且不能为空", + "data": {} + }) + + # 3. 业务校验:校验dict_id对应的字典类型是否存在 + dict_type = DictType.query.filter_by(id=dict_id).first() + if not dict_type: + return jsonify({ + "code": 400, + "msg": f"字典类型ID {dict_id} 不存在", + "data": {} + }) + + # ========== 核心逻辑修改:先查询所有status的记录 ========== + # 4. 校验dict_id + item_value是否存在(不限制status) + exist_item = DictItem.query.filter_by( + dict_id=dict_id, + item_value=item_value + ).first() + + if exist_item: + # 4.1 记录存在:判断status是否为1 + if exist_item.status != 1: + # 非1则改为1(恢复启用) + exist_item.status = 1 + exist_item.update_time = datetime.now() # 手动更新时间(若模型未自动配置) + db.session.commit() + # 返回更新成功响应 + return jsonify({ + "code": 200, + "msg": f"字典项{item_value}已存在,已恢复启用状态(status=1)", + "data": { + "id": exist_item.id, + "dict_id": exist_item.dict_id, + "item_value": exist_item.item_value, + "status": exist_item.status + } + }) + else: + # status=1:提示重复,不新增/更新 + return jsonify({ + "code": 400, + "msg": f"字典类型 {dict_type.dict_code} 下已存在{item_value}(启用状态),请勿重复添加", + "data": {} + }) + else: + # 4.2 记录不存在:正常新增 + new_dict_item = DictItem( + dict_id=dict_id, + item_value=item_value, + item_label=item_value, # 默认为item_value,如需自定义可改为req_data.get("item_label", item_value) + status=1, # 默认启用 + sort=0, # 默认排序值,如需自定义可改为req_data.get("sort", 0) + remark="", # 默认空备注,如需自定义可改为req_data.get("remark", "") + create_time=datetime.now(), # 若模型已设置自动生成,可省略 + update_time=datetime.now() # 若模型已设置自动生成,可省略 + ) + + # 插入数据库并提交 + db.session.add(new_dict_item) + db.session.commit() + + # 返回新增成功响应 + return jsonify({ + "code": 200, + "msg": "新增字典项成功", + "data": { + "id": new_dict_item.id, + "dict_id": new_dict_item.dict_id, + "item_value": new_dict_item.item_value + } + }) + + except Exception as e: + # 异常时回滚数据库,避免脏数据 + db.session.rollback() + print(f"新增/恢复字典项失败:{str(e)}", exc_info=True) + return jsonify({ + "code": 500, + "msg": "服务器内部错误,操作失败", + "data": {} + }) + + +@accident_bp.route("/update-item", methods=["POST"]) +def update_item(): + """ + 根据ID和传入的status,翻转字典项的状态(1→0,0→1) + 请求参数:JSON格式 {"id": 10, "status": 1} 或 {"id": 10, "status": 0} + 返回格式:标准化JSON响应 + """ + try: + # 1. 获取并解析请求的JSON参数 + req_data = request.get_json() + if not req_data: + return jsonify({ + "code": 400, + "msg": "请求参数不能为空,且必须为JSON格式", + "data": None + }), 400 + + # 2. 提取并校验id参数 + item_id = req_data.get("id") + req_status = req_data.get("status") + + # 3. 查询对应的字典项记录 + dict_item = DictItem.query.filter_by(id=item_id).first() + if not dict_item: + return jsonify({ + "code": 404, + "msg": f"未找到ID为{item_id}的字典项记录", + "data": None + }), 404 + + # ========== 核心逻辑修改:状态翻转 ========== + # 传入1则改为0,传入0则改为1 + target_status = 1 - req_status + dict_item.status = target_status # 更新为目标状态 + db.session.commit() # 提交数据库修改 + + # 5. 返回成功响应(包含更新后的记录信息) + return jsonify({ + "code": 200, + "msg": f"字典项状态更新成功(传入{req_status},更新为{target_status})", + "data": dict_item.to_dict() + }), 200 + + # 捕获JSON解析异常 + except ValueError as e: + return jsonify({ + "code": 400, + "msg": f"JSON参数解析失败:{str(e)}", + "data": None + }), 400 + + # 捕获数据库操作异常 + except SQLAlchemyError as e: + db.session.rollback() + return jsonify({ + "code": 500, + "msg": f"数据库操作失败:{str(e)}", + "data": None + }), 500 + + # 捕获其他未知异常 + except Exception as e: + return jsonify({ + "code": 500, + "msg": f"接口执行异常:{str(e)}", + "data": None + }), 500 + + +@accident_bp.route("/insert-accident", methods=["POST"]) +def insert_accident(): + """ + 新增事故工单接口 + 请求参数:JSON格式(见前端传参示例) + 返回格式:标准化JSON响应 + """ + try: + # 1. 解析前端JSON参数(无参数/非JSON直接返回错误) + req_data = request.get_json() + # print(111,req_data) + if not req_data: + return jsonify({ + "code": 400, + "msg": "请求参数不能为空,且必须为JSON格式", + "data": {} + }) + + # 2. 必传参数校验(模型中nullable=False的字段) + required_fields = [ + "vin", "occur_datetime", + "case_description", "fo_solution" + ] + missing_fields = [f for f in required_fields if f not in req_data or not req_data[f]] + if missing_fields: + return jsonify({ + "code": 400, + "msg": f"缺少必传参数:{','.join(missing_fields)}", + "data": {} + }) + + # 3. 时间字段转换(前端传ISO格式字符串 → datetime对象) + # 处理问题发生时间(occur_datetime) + try: + # 兼容前端传的带Z的ISO格式(如2026-01-29T06:32:10.017Z) + occur_datetime = datetime.fromisoformat(req_data["occur_datetime"].replace("Z", "+00:00")) + except Exception as e: + return jsonify({ + "code": 400, + "msg": f"时间格式错误(occur_datetime):请传入ISO格式(如2026-01-29T06:32:10.017Z),错误详情:{str(e)}", + "data": {} + }) + + # 处理工单新建时间(create_time):前端传则用前端值,否则用当前时间 + if "create_time" in req_data and req_data["create_time"]: + try: + create_time = datetime.fromisoformat(req_data["create_time"].replace("Z", "+00:00")) + except Exception as e: + return jsonify({ + "code": 400, + "msg": f"时间格式错误(create_time):请传入ISO格式(如2026-01-29T06:32:10.017Z),错误详情:{str(e)}", + "data": {} + }) + else: + create_time = datetime.now() # 前端未传则用当前时间 + + # 4. 构建AccidList实例(严格映射模型字段) + new_accident = AccidList( + ticket_id='', + vin=req_data["vin"].strip(), + occur_datetime=occur_datetime, + case_description=req_data["case_description"].strip(), + fo_solution=req_data["fo_solution"].strip(), + create_time=create_time, # 工单新建时间(前端传则用,否则当前时间) + system_function=req_data['system_function'].strip(), + + # 可选字段(前端传则用,否则用模型默认值) + creator=req_data.get("creator", "").strip(), # 创建人(有则更新,无则默认空) + model='', # 型号 + carline=req_data.get("carline"), # 车系 + labels=req_data.get("labels"), # 事故标签 + accident_level=req_data.get("accident_level", "P1"), # 事故评级(默认P1) + bmbs_name='', # BMBS联系人 + rdca_reporter=req_data.get("rdca_reporter", "").strip(), # RDCA报告人 + software_version=req_data.get("software_version", "").strip(), # 软件版本 + attachment_url=req_data.get("attachment_url", "").strip(), # 附件地址 + ) + + # 5. 插入数据库并提交 + db.session.add(new_accident) + db.session.commit() + + # 6. 返回成功响应(包含新增数据的完整信息) + return jsonify({ + "code": 200, + "msg": "新增成功", + "data": new_accident.to_dict() # 调用模型的to_dict方法返回结构化数据 + }) + + except Exception as e: + # 异常时回滚数据库,避免脏数据 + db.session.rollback() + # 记录详细错误日志(便于排查) + print(f"新增事故工单失败:{str(e)}") + # 返回友好错误提示(不暴露敏感信息) + return jsonify({ + "code": 500, + "msg": f"服务器内部错误,新增失败:{str(e)}", + "data": {} + }) + + +@accident_bp.route("/get-accident-record", methods=["POST"]) +def get_accident_record(): + """ + 查询事故工单记录接口(改用in实现多值过滤,无or_) + 入参:JSON格式,支持case_description模糊查询、carline/labels/affects_versions多值精确过滤 + 出参:按create_time从近到远排序的事故记录列表 + """ + try: + # 1. 解析前端参数 + params = request.get_json(silent=True) or {} + case_desc = params.get("case_description", "").strip() + # 提取并清洗多值参数(转列表+去空) + carline_list = [item.strip() for item in (params.get("carline", [])) if item.strip()] + labels_list = [item.strip() for item in (params.get("labels", [])) if item.strip()] + affects_versions_list = [item.strip() for item in (params.get("affects_versions", [])) if item.strip()] + + # 2. 初始化查询对象 + query = AccidList.query + + # 3. 构建查询条件 + # 3.1 case_description:保留模糊查询 + if case_desc: + query = query.filter(AccidList.case_description.like(f"%{case_desc}%")) + + # 3.2 carline:改用in实现多值精确过滤(核心修改,无or_) + if carline_list: + query = query.filter(AccidList.carline.in_(carline_list)) + + # 3.3 labels:同carline逻辑 + if labels_list: + query = query.filter(AccidList.labels.in_(labels_list)) + + # 3.4 affects_versions:同carline逻辑 + if affects_versions_list: + query = query.filter(AccidList.affects_versions.in_(affects_versions_list)) + + # 4. 排序+查询 + query = query.order_by(AccidList.create_time.desc()) + accident_records = query.all() + result = [record.to_dict() for record in accident_records] + + # 5. 返回响应 + return jsonify({ + "code": 200, + "msg": "查询成功", + "data": result + }), 200 + + except Exception as e: + print(f"查询事故记录异常:{str(e)}\n{traceback.format_exc()}") + return jsonify({ + "code": 500, + "msg": f"查询失败:{str(e)}", + "data": None + }), 500 + + +@accident_bp.route("/get-accident-by-id", methods=["POST"]) +def get_accident_by_id(): + """根据ID查询事故工单详情接口""" + try: + params = request.get_json(silent=True) or {} + id_str=params.get('id') + if not id_str: + return jsonify({ + "code": 400, # 400表示参数错误 + "msg": "参数缺失:请传入id参数", + "data": None + }), 400 + + # 转换为整数,处理非数字的情况 + try: + accident_id = int(id_str) + except ValueError: + return jsonify({ + "code": 400, + "msg": "参数错误:id必须是整数", + "data": None + }), 400 + + # 2. 查询数据库 + # filter_by按主键id查询,first()获取单条记录(None表示无匹配) + accident = AccidList.query.filter_by(id=accident_id).first() + + # 3. 处理查询结果 + if not accident: + return jsonify({ + "code": 404, # 404表示资源不存在 + "msg": f"未找到ID为{accident_id}的事故记录", + "data": None + }), 404 + + # 4. 格式化并返回数据(使用模型的to_dict()方法) + return jsonify({ + "code": 200, # 200表示成功 + "msg": "查询成功", + "data": accident.to_dict() # 调用模型自带的转字典方法 + }), 200 + + # 捕获数据库相关异常 + except SQLAlchemyError as e: + # 打印异常日志(方便排查问题) + print(f"数据库查询异常:{str(e)}") + return jsonify({ + "code": 500, # 500表示服务器内部错误 + "msg": "服务器内部错误:数据库查询失败", + "data": None + }), 500 + + # 捕获其他未知异常 + except Exception as e: + print(f"接口异常:{str(e)}") + return jsonify({ + "code": 500, + "msg": f"服务器内部错误:{str(e)}", + "data": None + }), 500 + + \ No newline at end of file diff --git a/backend/app/blueprints/auth/__init__.py b/backend/app/blueprints/auth/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/app/blueprints/auth/routes.py b/backend/app/blueprints/auth/routes.py new file mode 100644 index 0000000..547fdb6 --- /dev/null +++ b/backend/app/blueprints/auth/routes.py @@ -0,0 +1,335 @@ +from flask import Blueprint, current_app, request, jsonify +from sqlalchemy.exc import IntegrityError +from app.models import User, Role, UserRole # 导入模型类 +from app.utils import encrypt_password # 导入密码加密工具 +from app import db +from flask_jwt_extended import jwt_required, get_jwt_identity # 导入JWT相关工具 + + +auth_bp = Blueprint("auth", __name__) + + +@auth_bp.route("/create-user", methods=["POST"]) +# @jwt_required() # 需要有效Token才能创建用户 +def create_user(): + """ + { + "username": "new_user", + "password": "securePass123", + "role_ids": [1, 3] // 要分配的角色ID列表 + } + """ + data = request.get_json() + # print(data) + if not data or "username" not in data or "password" not in data: + return jsonify({"error": "缺少用户名或密码"}), 400 + + # 1. 验证用户名唯一性 + existing_user = User.query.filter_by(username=data["username"]).first() + if existing_user: + return jsonify({"error": "用户名已存在"}), 409 + + # 2. 获取当前操作者 + # current_user_id = get_jwt_identity() + current_user_id = 1 + print("current_user_id", current_user_id) + current_user = User.query.get(int(current_user_id)) + current_user_id = 1 + # if not current_user: + # return jsonify({"error": "无效的操作者"}), 401 + + # 3. 密码复杂度验证 + password = data["password"] + if len(password) < 4 or not any(c.isdigit() for c in password): + return jsonify({"error": "密码需至少4位且包含数字"}), 400 + + # 4. 验证角色(新增部分) + role_ids = data.get("role_ids", []) + valid_roles = [] + if role_ids: + valid_roles = Role.query.filter(Role.id.in_(role_ids)).all() + if len(valid_roles) != len(role_ids): + return jsonify({"error": "包含无效的角色ID"}), 400 + + try: + # 5. 创建新用户 + new_user = User( + username=data["username"], + password=encrypt_password(data["password"]), + status=data.get("status", 1), + created_by=current_user_id, + email=data.get("email"), + avatar=data.get("avatar"), + region=data.get("region"), + phone=data.get("phone"), + brief=data.get("brief"), + third_party_account=data.get("third_party_account"), + position=data.get("position"), + department=data.get("department"), + label=data.get("label"), + ) + + db.session.add(new_user) + db.session.flush() # 获取新用户ID但不提交事务 + + # 6. 分配角色(新增核心功能) + for role in valid_roles: + user_role = UserRole( + user_id=new_user.id, role_id=role.id, created_by=current_user_id + ) + db.session.add(user_role) + + db.session.commit() + + # 7. 构造响应数据(包含角色信息) + response_data = { + "id": new_user.id, + "username": new_user.username, + "created_at": new_user.created_at.isoformat(), + "created_by": new_user.created_by, + "roles": [ + {"id": r.id, "name": r.name} for r in valid_roles + ], # 新增角色信息 + } + + # 8. 记录操作日志(新增角色信息) + current_app.logger.info( + f"用户创建成功: {new_user.username} (ID:{new_user.id}) " + f"操作者: {current_user.username} (ID:{current_user_id}) " + f"分配角色: {[r.name for r in valid_roles]}" # 记录分配的角色 + ) + + return jsonify(response_data), 201 + + except Exception as e: + db.session.rollback() + current_app.logger.error(f"用户创建失败: {str(e)}") + return jsonify({"error": "服务器内部错误"}), 500 + + +# 2.修改用户 +@auth_bp.route("/update-user", methods=["POST"]) +def update_user(): + """ + 修改用户信息(支持更新所有字段,包括新增字段) + 请求体示例: + { + "user_id":"12345", + "username": "new_username", # 可选:修改用户名 + "password": "new_password", # 可选:修改密码(明文) + "status": 1, # 可选:修改状态 + "updated_by": 1, # 更新人ID + // 新增可选字段(需要更新的字段才传入) + "email": "new@example.com", + "phone": "+86 13987654321", + "department": "产品部", + "position": "产品经理", + "label": "产品,管理" + } + """ + data = request.get_json() + user_id = data["user_id"] + user = User.query.get(user_id) + + if not user: + return jsonify({"code": 404, "message": f"用户ID {user_id} 不存在"}), 404 + + try: + # 基础字段更新(原有逻辑保留) + if "username" in data and data["username"]: + user.username = data["username"] + if "password" in data and data["password"]: + user.password = encrypt_password(data["password"]) + if "status" in data: + user.status = data["status"] + if "updated_by" in data: + user.updated_by = data["updated_by"] + + # 新增字段更新(按需更新,仅处理传入的字段) + if "email" in data: + user.email = data["email"] + if "avatar" in data: + user.avatar = data["avatar"] + if "region" in data: + user.region = data["region"] + if "phone" in data: + user.phone = data["phone"] + if "brief" in data: + user.brief = data["brief"] + if "third_party_account" in data: + user.third_party_account = data["third_party_account"] + if "position" in data: + user.position = data["position"] + if "department" in data: + user.department = data["department"] + if "label" in data: + user.label = data["label"] + + db.session.commit() + + # 返回更新结果(包含核心字段和新增关键字段) + return jsonify( + { + "code": 200, + "message": "用户信息更新成功", + "data": { + "user_id": user.id, + "username": user.username, + "email": user.email, + "phone": user.phone, + "department": user.department, + "updated_at": user.updated_at.strftime("%Y-%m-%d %H:%M:%S"), + }, + } + ) + + except IntegrityError: + db.session.rollback() + return ( + jsonify({"code": 409, "message": f'用户名"{data["username"]}"已存在'}), + 409, + ) + except Exception as e: + db.session.rollback() + return jsonify({"code": 500, "message": f"更新失败:{str(e)}"}), 500 + + +# 3. 创建角色 +@auth_bp.route("/roles", methods=["POST"]) +def create_role(): + """ + 创建新角色 + 请求体示例: + { + "name": "admin", # 角色名称(唯一) + "description": "系统管理员", + "status": 1, + "created_by": 1 # 创建人ID + } + """ + data = request.get_json() + + if not data.get("name"): + return jsonify({"code": 400, "message": "角色名称不能为空"}), 400 + + try: + new_role = Role( + name=data["name"], + description=data.get("description"), + status=data.get("status", 1), + created_by=data.get("created_by"), + updated_by=data.get("created_by"), + ) + + db.session.add(new_role) + db.session.commit() + + return jsonify( + { + "code": 200, + "message": "角色创建成功", + "data": {"role_id": new_role.id, "name": new_role.name}, + } + ) + + except IntegrityError: + db.session.rollback() + return jsonify({"code": 409, "message": f'角色"{data["name"]}"已存在'}), 409 + except Exception as e: + db.session.rollback() + return jsonify({"code": 500, "message": f"创建失败:{str(e)}"}), 500 + + +# 4. 修改角色 +@auth_bp.route("/roles/", methods=["PUT"]) +def update_role(role_id): + """ + 修改角色信息 + 请求体示例: + { + "name": "super_admin", # 可选:修改角色名称 + "description": "超级管理员", # 可选:修改描述 + "status": 1, # 可选:修改状态(1-启用,0-禁用) + "updated_by": 1 # 更新人ID + } + """ + data = request.get_json() + role = Role.query.get(role_id) + + if not role: + return jsonify({"code": 404, "message": f"角色ID {role_id} 不存在"}), 404 + + try: + if "name" in data and data["name"]: + role.name = data["name"] + if "description" in data: + role.description = data["description"] + if "status" in data: + role.status = data["status"] + if "updated_by" in data: + role.updated_by = data["updated_by"] + + db.session.commit() + + return jsonify( + { + "code": 200, + "message": "角色信息更新成功", + "data": {"role_id": role.id, "name": role.name}, + } + ) + + except IntegrityError: + db.session.rollback() + return jsonify({"code": 409, "message": f'角色"{data["name"]}"已存在'}), 409 + except Exception as e: + db.session.rollback() + return jsonify({"code": 500, "message": f"更新失败:{str(e)}"}), 500 + + +# 5. 给用户分配角色(补充功能:用户-角色关联) +@auth_bp.route("/user-roles", methods=["POST"]) +def assign_role_to_user(): + """ + 给用户分配角色(多对多关联) + 请求体示例: + { + "user_id": 1, + "role_id": 2, + "created_by": 1 # 操作人ID + } + """ + data = request.get_json() + user_id = data.get("user_id") + role_id = data.get("role_id") + + # 校验用户和角色是否存在 + if not User.query.get(user_id): + return jsonify({"code": 404, "message": f"用户ID {user_id} 不存在"}), 404 + if not Role.query.get(role_id): + return jsonify({"code": 404, "message": f"角色ID {role_id} 不存在"}), 404 + + try: + # 检查是否已关联 + existing = UserRole.query.filter_by(user_id=user_id, role_id=role_id).first() + if existing: + return ( + jsonify( + {"code": 409, "message": f"用户ID {user_id} 已拥有角色ID {role_id}"} + ), + 409, + ) + + # 创建关联 + user_role = UserRole( + user_id=user_id, role_id=role_id, created_by=data.get("created_by") + ) + db.session.add(user_role) + db.session.commit() + + return jsonify({"code": 200, "message": "角色分配成功"}) + + except Exception as e: + db.session.rollback() + return jsonify({"code": 500, "message": f"分配失败:{str(e)}"}), 500 + diff --git a/backend/app/blueprints/file_uploads/__init__.py b/backend/app/blueprints/file_uploads/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/app/blueprints/file_uploads/routes.py b/backend/app/blueprints/file_uploads/routes.py new file mode 100644 index 0000000..9f5df23 --- /dev/null +++ b/backend/app/blueprints/file_uploads/routes.py @@ -0,0 +1,261 @@ +from concurrent.futures import ThreadPoolExecutor, as_completed +from datetime import datetime, timedelta, timezone +from operator import or_ +import os +import random +import string +import traceback +from flask import Blueprint, json, jsonify, current_app, request +from sqlalchemy.exc import SQLAlchemyError +from app.models import AccidList, DictItem, DictType, FileUpload +from app import db + +file_uploads_bp = Blueprint("file_uploads_bp", __name__) + +ALLOWED_EXTENSIONS={'png', 'jpg', 'jpeg', 'gif'} + + + +def allowed_file(filename): + """验证图片格式是否合法""" + return '.' in filename and filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS + + +def generate_file_alias(filename): + """生成唯一存储别名(避免重名):时间戳+6位随机字符串+扩展名""" + ext = filename.rsplit('.', 1)[1].lower() + random_str = ''.join(random.choices(string.ascii_letters + string.digits, k=6)) + timestamp = int(datetime.now().timestamp()) + return f"{timestamp}_{random_str}.{ext}" + + +# 接口1:图片上传(基础接口,返回文件ID) +@file_uploads_bp.route('/upload-image', methods=['POST']) +def upload_image(): + """ + 图片上传接口 + - 请求方式:POST + - Content-Type: multipart/form-data + - 请求参数: + file: 图片文件(必传) + create_by: 上传人(可选,如admin) + - 返回:文件ID、访问URL等信息 + """ + try: + # 1. 校验文件是否存在 + if 'file' not in request.files: + return jsonify({'code': 400, 'msg': '请选择要上传的图片', 'data': None}), 400 + file = request.files['file'] + if file.filename == '': + return jsonify({'code': 400, 'msg': '文件名不能为空', 'data': None}), 400 + + # 2. 校验文件格式 + if not allowed_file(file.filename): + return jsonify({ + 'code': 400, + 'msg': f'仅支持{"/".join(ALLOWED_EXTENSIONS)}格式的图片', + 'data': None + }), 400 + + # 3. 创建上传目录(不存在则自动创建) + os.makedirs(current_app.config['UPLOAD_FOLDER'], exist_ok=True) + + # 4. 生成唯一别名并保存文件 + file_alias = generate_file_alias(file.filename) + file_save_path = os.path.join(current_app.config['UPLOAD_FOLDER'], file_alias) + file.save(file_save_path) + + # 5. 写入FileUpload表 + file_size = os.path.getsize(file_save_path) # 获取文件大小(字节) + file_type = file.content_type # 获取MIME类型(如image/jpeg) + create_by = request.form.get('create_by', None) + + new_file = FileUpload( + file_name=file.filename, + file_alias=file_alias, + file_path=f"/uploads/{file_alias}", # 相对路径,前端拼接域名访问 + file_size=file_size, + file_type=file_type, + create_by=create_by, + business_type='case', # 固定关联事故工单业务 + business_id=None # 暂不关联具体工单,后续绑定 + ) + db.session.add(new_file) + db.session.commit() + + # 6. 返回成功响应 + return jsonify({ + 'code': 200, + 'msg': '图片上传成功', + 'data': new_file.to_dict() + }), 200 + + except Exception as e: + db.session.rollback() # 异常回滚 + return jsonify({ + 'code': 500, + 'msg': f'上传失败:{str(e)}', + 'data': None + }), 500 + + +# 接口2:绑定图片到事故工单 +@file_uploads_bp.route('/bind-image', methods=['POST']) +def bind_image_to_case(): + """ + 绑定图片到事故工单(更新image_ids和business_id) + - 请求方式:POST + - Content-Type: application/json + - 请求参数: + case_id: 事故工单ID(必传) + file_ids: 图片ID列表(如[1,2,3],必传) + """ + try: + data = request.get_json() + case_id = data.get('case_id') + file_ids = data.get('file_ids', []) + + # 1. 校验参数 + if not case_id or not isinstance(file_ids, list) or len(file_ids) == 0: + return jsonify({'code': 400, 'msg': '工单ID和图片ID列表不能为空', 'data': None}), 400 + + # 2. 检查工单是否存在 + case = AccidList.query.get(case_id) + if not case: + return jsonify({'code': 404, 'msg': '事故工单不存在', 'data': None}), 404 + + # 3. 拼接图片ID串(去重) + existing_ids = case.image_ids.split(',') if case.image_ids.strip() else [] + new_ids = list(set(existing_ids + [str(fid) for fid in file_ids])) # 去重 + case.image_ids = ','.join(new_ids) + case.update_at = db.func.current_timestamp() # 更新工单修改时间 + + # 4. 更新FileUpload的business_id(关联具体工单) + FileUpload.query.filter( + FileUpload.id.in_(file_ids), + FileUpload.business_type == 'case' + ).update({'business_id': case_id}, synchronize_session=False) + + db.session.commit() + + # 5. 返回结果 + return jsonify({ + 'code': 200, + 'msg': '图片绑定成功', + 'data': { + 'case_id': case_id, + 'image_ids': case.image_ids, + 'image_count': len(new_ids) + } + }), 200 + + except Exception as e: + db.session.rollback() + return jsonify({ + 'code': 500, + 'msg': f'绑定失败:{str(e)}', + 'data': None + }), 500 + + +# 接口3:查询事故工单关联的图片 +@file_uploads_bp.route('/get-images/', methods=['GET']) +def get_case_images(case_id): + """ + 查询工单关联的所有有效图片 + - 请求方式:GET + - 路径参数:case_id - 事故工单ID + """ + try: + # 1. 检查工单是否存在 + case = AccidList.query.get(case_id) + if not case: + return jsonify({'code': 404, 'msg': '事故工单不存在', 'data': None}), 404 + + # 2. 拆分图片ID并查询 + image_ids = case.image_ids.split(',') if case.image_ids.strip() else [] + if not image_ids: + return jsonify({'code': 200, 'msg': '暂无关联图片', 'data': []}), 200 + + # 3. 查询有效图片(status=1) + images = FileUpload.query.filter( + FileUpload.id.in_(image_ids), + FileUpload.status == 1 + ).all() + + # ========== 核心修改:拼接完整图片URL ========== + image_base_url = current_app.config['IMAGE_BASE_URL'] # 获取配置的基础URL + image_data = [] + for img in images: + img_dict = img.to_dict() # 原有模型的to_dict方法 + # 把相对路径拼接成完整URL(覆盖原有file_path) + img_dict['file_path'] = f"{image_base_url}{img_dict['file_path']}" + image_data.append(img_dict) + + # 4. 返回结果(改用拼接后的image_data) + return jsonify({ + 'code': 200, + 'msg': '查询成功', + 'data': image_data # 现在data里的file_path是完整URL + }), 200 + + except Exception as e: + return jsonify({ + 'code': 500, + 'msg': f'查询失败:{str(e)}', + 'data': None + }), 500 + + +# 接口4:移除工单关联的图片(逻辑删除) +@file_uploads_bp.route('/remove-image', methods=['POST']) +def remove_case_image(): + """ + 移除工单关联的图片(逻辑删除) + - 请求方式:POST + - Content-Type: application/json + - 请求参数: + case_id: 工单ID(必传) + file_id: 图片ID(必传) + """ + try: + data = request.get_json() + case_id = data.get('case_id') + file_id = data.get('file_id') + + # 1. 校验参数 + if not case_id or not file_id: + return jsonify({'code': 400, 'msg': '工单ID和图片ID不能为空', 'data': None}), 400 + + # 2. 检查工单和图片是否存在 + case = AccidList.query.get(case_id) + file = FileUpload.query.get(file_id) + if not case: + return jsonify({'code': 404, 'msg': '事故工单不存在', 'data': None}), 404 + if not file: + return jsonify({'code': 404, 'msg': '图片不存在', 'data': None}), 404 + + # 3. 移除工单的image_ids中的该ID + existing_ids = case.image_ids.split(',') if case.image_ids.strip() else [] + if str(file_id) in existing_ids: + existing_ids.remove(str(file_id)) + case.image_ids = ','.join(existing_ids) + case.update_at = db.func.current_timestamp() + + # 4. 逻辑删除图片(status=0) + file.status = 0 + db.session.commit() + + return jsonify({ + 'code': 200, + 'msg': '图片移除成功', + 'data': {'case_id': case_id, 'file_id': file_id} + }), 200 + + except Exception as e: + db.session.rollback() + return jsonify({ + 'code': 500, + 'msg': f'移除失败:{str(e)}', + 'data': None + }), 500 diff --git a/backend/app/blueprints/incident_gen5/__init__.py b/backend/app/blueprints/incident_gen5/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/app/blueprints/incident_gen5/routes.py b/backend/app/blueprints/incident_gen5/routes.py new file mode 100644 index 0000000..2840f6e --- /dev/null +++ b/backend/app/blueprints/incident_gen5/routes.py @@ -0,0 +1,123 @@ +from flask import Blueprint, json, jsonify, current_app, request +from app.blueprints.incident_gen5.service import ( + aggregate_and_sort_incidents, + aggregate_line_list, + get_logging_list, + process_incident_data, +) +from app.services.remote_service import DatabricksQuery +from app.link_wedata_utils import query_tencent_cloud_data +from app.utils import decrypt_code,mask_vin + + +incident_gen5_bp = Blueprint("incident", __name__) + + +@incident_gen5_bp.route("/query", methods=["GET"]) +def query(): + try: + + try: + query_client = DatabricksQuery() + results = query_client.query_table( + table_name=current_app.config["GEN5_TABLE_NAME"], # 替换为实际表名 taf_level_two_plus.accident_report_data + vin="LE4LG4GB6RLMLFJEH", # LE4LG4GB6RLMLFJEH + limit=100, + ) + # print(999, results) + # for row in results: + # print(111111, row) + # print(type(results)) + finally: + query_client.stop() + + # for i in query_client: + # print(i['incident_time']) + return jsonify({"status": "success", "data": results}), 200 + except Exception as e: + return jsonify({"status": "error", "message": str(e)}), 500 + + + +@incident_gen5_bp.route("/list", methods=["GET","POST"]) +def get_gen5_list(): + # 验证请求头的信息,通过才继续 + encrypted = request.headers.get('X-Encrypted-Timestamp') + if not encrypted: + return jsonify({"msg": "Parameters are Incorrect"}), 400 + + encrypt_str=decrypt_code(encrypted) + if not encrypt_str: + return jsonify({"msg": "Invalid request"}), 400 + + data = request.get_json() + + if not data: + return jsonify({"code": 400, "data": None, "msg": "请填写有效参数"}), 400 + + required_fields = ["incident_time", "oneid"] + for field in required_fields: + if field not in data: + return ( + jsonify({"code": 400, "data": None, "msg": f"缺少必需字段: {field}"}), + 400, + ) + + incident_time = data["incident_time"] + # 检查是否为非空列表 + if not isinstance(incident_time, list) or len(incident_time) != 2: + return ( + jsonify( + { + "code": 400, + "data": [], + "msg": "incident_time必须是包含两个时间的数组", + } + ), + 400, + ) + + oneid = data["oneid"] + if not isinstance(oneid, str) or not oneid.strip(): + return jsonify({"code": 400, "data": None, "msg": "oneid必须是非空字符串"}), 400 + + mask_oneid=mask_vin(oneid) + + query_client = DatabricksQuery() + results = query_client.query_table( + table_name=current_app.config["GEN5_TABLE_NAME"], + vin=mask_oneid, + start_time=incident_time[0], + end_time=incident_time[1], + # limit=10000, + ) + # print(11,results) + if len(results) == 0: + return jsonify({"code": 200, "data": [], "msg": "查询结果为空"}), 200 + + try: + events_list = process_incident_data(results) + map_list = aggregate_and_sort_incidents(results) + line_list = aggregate_line_list(map_list) + logging_list = get_logging_list(map_list) + + response = { + "code": 200, + "data": { + "events_list": events_list, + "map_list":map_list, + "line_list": line_list, + "logging_list": logging_list, + }, + "msg": "success", + } + return jsonify(response) + except Exception as e: + # 打印错误日志,方便后端排查 + print(f"数据处理异常:{str(e)}") + # 返回友好的错误信息,前端正常解析 + return jsonify({ + "code": 500, + "data": [], + "msg": f"数据处理失败:{str(e)}" + }), 200 \ No newline at end of file diff --git a/backend/app/blueprints/incident_gen5/service.py b/backend/app/blueprints/incident_gen5/service.py new file mode 100644 index 0000000..d7547d4 --- /dev/null +++ b/backend/app/blueprints/incident_gen5/service.py @@ -0,0 +1,447 @@ +import ast +from datetime import datetime, timedelta, timezone +import pandas as pd # 确保导入pandas用于类型检查 + +def process_incident_data(test_val): + """ + 处理事故数据,去重、排序并提取指定字段。 + + Args: + test_val (dict): 包含 'status' 和 'data' 键的原始数据字典。 + + Returns: + dict: 格式化后的数据,包含 'events' 键。 + """ + unique_data_dict = {} + for item in test_val: + name = item.get("incident_name") + if name and name not in unique_data_dict: + unique_data_dict[name] = item + + # 获取去重后的数据列表 + unique_data_list = list(unique_data_dict.values()) + + # 2. 根据 incident_time 升序排序 + # incident_time 是 GMT 格式字符串,可以直接排序 + sorted_data = sorted(unique_data_list, key=lambda x: x.get("incident_time", "")) + + # 3. 提取指定字段并格式化时间 + id = 0 + processed_events_data = [] + for item in sorted_data: + incident_time_str = item.get("incident_time") + if not incident_time_str: + # 如果 incident_time 为空或不存在,可以选择跳过或使用默认值 + # 这里我们跳过 + print( + f"Warning: Missing 'incident_time' for item: {item.get('incident_name')}, skipping." + ) + continue + + try: + # 🔥 仅修改这里:解析 GMT 格式时间 "Wed, 10 Apr 2024 16:00:00 GMT" + if isinstance(incident_time_str, datetime): + incident_datetime = incident_time_str + else: + # 解析 GMT 格式字符串 "Wed, 10 Apr 2024 16:00:00 GMT" + incident_datetime = datetime.strptime(incident_time_str, "%a, %d %b %Y %H:%M:%S %Z") + except ValueError as e: + # 如果时间格式不正确,可以选择跳过或使用默认值 + # 这里我们跳过 + print( + f"Warning: Invalid 'incident_time' format for item: {item.get('incident_name')}, value: {incident_time_str}, error: {e}. Skipping." + ) + continue + + # 格式化日期和时间(逻辑不变) + date_str = incident_datetime.strftime("%Y-%m-%d") + time_str = incident_datetime.strftime("%H:%M:%S") + + # 创建新的字典,只包含需要的字段 + id += 1 + processed_item = { + "id": id, + "oneid": item.get("oneid", ""), + "date": date_str, + "time": time_str, + "incident_name": item.get("incident_name", ""), + "incident_description": item.get( + "incident_description", "" + ), + } + processed_events_data.append(processed_item) + + # 4. 构建最终返回的字典 + total_count = len(processed_events_data) + result = {"data": processed_events_data, "total": total_count} + + return result + + +def process_incident_data1(test_val): + """ + 处理事故数据,按照incident_time和incident_name去重,然后按incident_time排序。 + + Args: + test_val (list): 原始数据列表 + + Returns: + dict: 格式化后的数据 + """ + from datetime import datetime + + # 1. 按照 incident_name 和 incident_time 组合去重 + unique_data_dict = {} + for item in test_val: + name = item.get("incident_name") + time = item.get("incident_time") + if name and time: + # 使用组合键去重 + key = f"{name}_{time}" + if key not in unique_data_dict: + unique_data_dict[key] = item + + # 获取去重后的数据列表 + unique_data_list = list(unique_data_dict.values()) + + # 2. 根据 incident_time 升序排序 + def parse_time(time_str): + try: + # 处理 "Sat, 08 Mar 2025 09:00:00 GMT" 格式 + return datetime.strptime(time_str, "%a, %d %b %Y %H:%M:%S %Z") + except: + # 处理 ISO 8601 格式作为备选 + try: + return datetime.fromisoformat(time_str.replace("Z", "+00:00")) + except: + return datetime.min + + sorted_data = sorted(unique_data_list, key=lambda x: parse_time(x.get("incident_time", ""))) + + # 3. 提取指定字段 + id = 0 + processed_events_data = [] + for item in sorted_data: + incident_time_str = item.get("incident_time") + if not incident_time_str: + continue + + try: + incident_datetime = parse_time(incident_time_str) + except: + continue + + # 格式化日期和时间 + date_str = incident_datetime.strftime("%Y-%m-%d") + time_str = incident_datetime.strftime("%H:%M:%S") + + # 创建新的字典 + id += 1 + processed_item = { + "id": id, + "oneid": item.get("oneid", ""), + "date": date_str, + "time": time_str, + "incident_name": item.get("incident_name", ""), + "incident_description": item.get("incident_description", ""), + } + processed_events_data.append(processed_item) + + # 4. 构建最终返回的字典 + total_count = len(processed_events_data) + result = {"data": processed_events_data, "total": total_count} + + return result + +def aggregate_and_sort_incidents(raw_data): + """ + 按(idc_tickcount_ms + Incident__Name)聚合,整合同一组内的信号数据,消除视觉冗余 + 1. 同一组只输出1条记录,包含公共信息+所有信号数据 + 2. 按idc_tickcount_ms从小到大排序 + 3. 保留所有关键数据(含mux_data解析) + """ + aggregate_dict = {} + for item in raw_data: + # 1. 处理聚合key:(idc_tickcount_ms整数, Incident__Name) + try: + tickcount_int = int(item.get("idc_tickcount_ms", "0")) + except (ValueError, TypeError): + tickcount_int = 0 + incident_name = item.get("incident_name", "unknown_incident") + aggregate_key = (tickcount_int, incident_name) + + # 2. 提取当前记录的关键数据(用于后续整合) + # 处理数值:优先取int_value,无则取float_value,都无则为None + # value = item.get("int_value") or item.get("float_value") + int_value=item.get("int_value") + float_value=item.get('float_value') + if int_value is not None: + value = int_value + elif float_value is not None: + value = float_value + else: + value = None + + # 处理mux_data:若为JSON字符串,解析为字典(方便后续使用) + mux_data = item.get("mux_data") + if mux_data and mux_data != "null": + try: + mux_data = ast.literal_eval(mux_data) + except (ValueError, SyntaxError): + pass # 解析失败则保留原始字符串 + + # 3. 整合到聚合字典 + if aggregate_key not in aggregate_dict: + # 首次遇到该key:初始化聚合结构(提取公共基础信息) + aggregate_dict[aggregate_key] = { + "base_info": { # 同一组的公共信息(只取第一条记录的) + "oneid": item.get("oneid"), + "ihd_version": item.get("ihd_version"), + "incident_time": item.get("incident_time"), + "speed": item.get("speed"), + "gps_heading": item.get("gps_heading"), + "incident_name": incident_name, + "incident_description": item.get("incident_description"), + "Trigger__condition": item.get("Trigger__condition"), + "idc_tickcount_ms": item.get("idc_tickcount_ms"), + "idc_tickcount_ms_int": tickcount_int, + "gps_dr_position": item.get("gps_dr_position"), + "incident_id": item.get("incident_id"), + "longitude": item.get("longitude"), + "latitude": item.get("latitude") + }, + "signal_data": {} # 整合同一组的所有信号(key: 信号名,value: 信号数据) + } + + # print('item.get("signal_name")',item.get('signal_name')) + # 4. 将当前记录的信号数据添加到signal_data中 + # signal_key = item.get("key", "unknown_key") + signal_key=item.get('signal_name') + aggregate_dict[aggregate_key]["signal_data"][signal_key] = { + "value": value, + "mux_data": mux_data, + "signal_ihd_id": item.get("signal_ihd_id"), + "Decoding__value": item.get("Decoding__value"), + "Meaning": item.get("meaning") + } + + sorted_data=sort_incidents_by_heading(list(aggregate_dict.values())) # 跨周期的 + + sorted_result = sorted( + sorted_data, + key=lambda x: x.get("idc_tickcount_ms_tmp", x["base_info"]["idc_tickcount_ms_int"]) + ) + + return sorted_result + + +def parse_coordinate(coord_str): + """ + 解析坐标字符串为浮点数 + """ + if coord_str is None: + return None + + if isinstance(coord_str, (int, float)): + return float(coord_str) + + if isinstance(coord_str, str): + try: + return float(coord_str) + except ValueError: + # 如果是 "[longitude, latitude]" 格式,提取第一个数字 + if coord_str.startswith('[') and coord_str.endswith(']'): + try: + coord_str_clean = coord_str.strip('[]') + coords = coord_str_clean.split(',') + if len(coords) >= 1: + return float(coords[0].strip()) + except (ValueError, IndexError): + pass + return None + + return None + + +def sort_incidents_by_heading(raw_data): + """ + 按__head方法的逻辑进行排序:根据GPS航向角排序并处理时间戳回绕 + """ + import pandas as pd + + # 将原始数据转换为DataFrame,并处理经纬度 + processed_data = [] + for item in raw_data: + # 获取base_info + base_info = item.get('base_info', {}) + + processed_item = item.copy() # 保持原始结构 + + # 解析经纬度和航向角,从base_info中获取 + longitude = parse_coordinate(base_info.get('longitude')) + latitude = parse_coordinate(base_info.get('latitude')) + gps_heading = parse_coordinate(base_info.get('gps_heading')) + + # 添加到processed_item,用于排序 + processed_item['longitude'] = longitude if longitude is not None else 0.0 + processed_item['latitude'] = latitude if latitude is not None else 0.0 + processed_item['gps_heading'] = gps_heading if gps_heading is not None else 0.0 + processed_item['incident_time'] = base_info.get('incident_time', '') + + # 确保时间戳是数值类型,从base_info中获取 + try: + tickcount_ms = int(base_info.get('idc_tickcount_ms', 0)) + except (ValueError, TypeError): + tickcount_ms = 0 + + processed_item['idc_tickcount_ms'] = tickcount_ms + + processed_data.append(processed_item) + + df = pd.DataFrame(processed_data) + + # 确保所有相关列都是数值类型 + df['idc_tickcount_ms'] = pd.to_numeric(df['idc_tickcount_ms'], errors='coerce').fillna(0).astype(int) + df['longitude'] = pd.to_numeric(df['longitude'], errors='coerce').fillna(0.0) + df['latitude'] = pd.to_numeric(df['latitude'], errors='coerce').fillna(0.0) + df['gps_heading'] = pd.to_numeric(df['gps_heading'], errors='coerce').fillna(0.0) + + # 计算平均GPS航向角 + gps_heading = df["gps_heading"].mean() + # print('gps_heading',gps_heading) + + # 根据GPS航向角进行排序 + if (gps_heading >= 315): + df.sort_values(by=['incident_time','latitude', 'longitude','idc_tickcount_ms'], + ascending=[True, True, False, True], inplace=True) + elif (gps_heading < 45): + df.sort_values(by=['incident_time','latitude', 'longitude','idc_tickcount_ms'], + ascending=[True, True, True, True], inplace=True) + elif (gps_heading >= 45) and (gps_heading < 90): + df.sort_values(by=['incident_time','longitude', 'latitude','idc_tickcount_ms'], + ascending=[True, True, True, True], inplace=True) + elif (gps_heading >= 90) and (gps_heading < 135): + df.sort_values(by=['incident_time','longitude', 'latitude','idc_tickcount_ms'], + ascending=[True, True, False, True], inplace=True) + elif (gps_heading >= 135) and (gps_heading < 180): + df.sort_values(by=['incident_time','latitude', 'longitude','idc_tickcount_ms'], + ascending=[True, False, True, True], inplace=True) + elif (gps_heading >= 180) and (gps_heading < 225): + df.sort_values(by=['incident_time','latitude', 'longitude','idc_tickcount_ms'], + ascending=[True, False, False, True], inplace=True) + elif (gps_heading >= 225) and (gps_heading < 270): + df.sort_values(by=['incident_time','longitude', 'latitude','idc_tickcount_ms'], + ascending=[True, False, False, True], inplace=True) + elif (gps_heading >= 270) and (gps_heading < 315): + df.sort_values(by=['incident_time','longitude', 'latitude','idc_tickcount_ms'], + ascending=[True, False, True, True], inplace=True) + + # 处理时间戳回绕 + df['idc_tickcount_ms_tmp'] = df['idc_tickcount_ms'].copy() + df.reset_index(inplace=True, drop=True) + + # 确保数据类型一致 + df['idc_tickcount_ms'] = df['idc_tickcount_ms'].astype(int) + + max_tickcount = df['idc_tickcount_ms'].max() + loopcount = 65535 if max_tickcount < 65536 else 2097151 + period = 0 + + # 确保所有值都是整数 + df['idc_tickcount_ms'] = df['idc_tickcount_ms'].astype(int) + + for i in range(1, len(df)): + current_tick = int(df.loc[i, 'idc_tickcount_ms']) + prev_tick = int(df.loc[i-1, 'idc_tickcount_ms']) + if current_tick < prev_tick: + period += 1 + df.loc[i, 'idc_tickcount_ms_tmp'] = current_tick + period * loopcount + + # 按调整后的时间戳排序 + df.sort_values(by=["idc_tickcount_ms_tmp"], inplace=True) + + # 转换回列表格式,移除临时添加的排序字段 + result = [] + for record in df.to_dict('records'): + # 移除临时添加的排序字段 + cleaned_record = {k: v for k, v in record.items() if k not in ['longitude', 'latitude', 'gps_heading', 'incident_time']} + result.append(cleaned_record) + + # print(result) + return result + + +def aggregate_line_list(map_result): + # 初始化聚合字典,key为idc_tickcount_ms_int,value为聚合后的数据 + aggregated_data = {} + + # 遍历所有事件 + for item in map_result: + base_info = item['base_info'] + # 提取需要的字段 + tickcount = item['idc_tickcount_ms_tmp'] + speed = base_info['speed'] + oneid = base_info['oneid'] + latitude = base_info['latitude'] + longitude = base_info['longitude'] + incident_name = base_info['incident_name'] + + # 聚合处理 + if tickcount not in aggregated_data: + # 新的tickcount,初始化记录 + aggregated_data[tickcount] = { + 'idc_tickcount_ms_int': tickcount, + 'speed': speed, + 'oneid': oneid, + 'latitude': latitude, + 'longitude': longitude, + 'incident_names': [incident_name] # 用列表收集多个事件名称 + } + else: + # 已存在的tickcount,追加事件名称 + aggregated_data[tickcount]['incident_names'].append(incident_name) + + # 转换为列表形式(按tickcount排序) + result = sorted(aggregated_data.values(), key=lambda x: x['idc_tickcount_ms_int']) + + return result + + +def get_logging_list(map_list): + result=[] + id=0 + for item in map_list: + # print(item) + id+=1 + row_data={} + row_data['id']=id + base_info = item['base_info'] + # print("base_info['incident_time']",base_info['incident_time']) + # dt = datetime.strptime(base_info['incident_time'], "%Y-%m-%d %H:%M:%S%z") + dt = base_info['incident_time'] + if not isinstance(dt, datetime): + # 只有是字符串时,才解析 + dt = datetime.strptime(dt, "%Y-%m-%d %H:%M:%S%z") + + row_data['time']=dt.strftime("%H:%M:%S") + + # row_data['coordinates']=base_info['longitude'][:12]+'.'+'\n'+base_info['latitude'][:12] + row_data['coordinates'] = str(base_info['longitude'])[:12] + '\n' + str(base_info['latitude'])[:12] + row_data['idc_tickcount_ms']=base_info['idc_tickcount_ms_int'] + row_data['speed']=base_info['speed'] + row_data['incident']={ + "name":base_info['incident_name'], + "description":base_info['incident_description'], + } + + row_data['signals']=[] + for key,value in item["signal_data"].items(): + signals_name_value={} + signals_name_value["name"]=key + signals_name_value["value"]=value['value'] + signals_name_value["meaning"]=value['Meaning'] + row_data['signals'].append(signals_name_value) + + result.append(row_data) + + return result diff --git a/backend/app/blueprints/incident_gen6/__init__.py b/backend/app/blueprints/incident_gen6/__init__.py new file mode 100644 index 0000000..b81ad79 --- /dev/null +++ b/backend/app/blueprints/incident_gen6/__init__.py @@ -0,0 +1,12 @@ +from flask import Blueprint, json, jsonify, current_app, request +from app.blueprints.incident_gen5.service import ( + aggregate_and_sort_incidents, + aggregate_line_list, + get_logging_list, + process_incident_data, +) +from app.services.remote_service import DatabricksQuery +from app.utils import convert_incident_time_format + + +incident_bp = Blueprint("incident", __name__) \ No newline at end of file diff --git a/backend/app/blueprints/incident_gen6/histro.json b/backend/app/blueprints/incident_gen6/histro.json new file mode 100644 index 0000000..b9b55a9 --- /dev/null +++ b/backend/app/blueprints/incident_gen6/histro.json @@ -0,0 +1,12447 @@ +[ + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139695.0", + "mileage": "122.8", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827815193", + "time": "2025-12-04 13:56:55.193", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139700.0", + "mileage": "122.8", + "value": "2.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827815243", + "time": "2025-12-04 13:56:55.243", + "valueExplanation": "SLIGHTLY_TOUCH", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139705.0", + "mileage": "122.8", + "value": "0.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827815293", + "time": "2025-12-04 13:56:55.293", + "valueExplanation": "NOT_TOUCH", + "pre_value": "2.0", + "pre_valueExplanation": "SLIGHTLY_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140305.0", + "mileage": "123.0", + "value": "2.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827821293", + "time": "2025-12-04 13:57:01.293", + "valueExplanation": "SLIGHTLY_TOUCH", + "pre_value": "0.0", + "pre_valueExplanation": "NOT_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140310.0", + "mileage": "123.0", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827821343", + "time": "2025-12-04 13:57:01.343", + "valueExplanation": "TOUCH", + "pre_value": "2.0", + "pre_valueExplanation": "SLIGHTLY_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140315.0", + "mileage": "123.0", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827821393", + "time": "2025-12-04 13:57:01.393", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140325.0", + "mileage": "123.0", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827821493", + "time": "2025-12-04 13:57:01.493", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140370.0", + "mileage": "123.0", + "value": "6.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827821943", + "time": "2025-12-04 13:57:01.943", + "valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140805.0", + "mileage": "123.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827826293", + "time": "2025-12-04 13:57:06.293", + "valueExplanation": "GRASP", + "pre_value": "6.0", + "pre_valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141155.0", + "mileage": "123.1", + "value": "6.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827829793", + "time": "2025-12-04 13:57:09.793", + "valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141230.0", + "mileage": "123.2", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827830543", + "time": "2025-12-04 13:57:10.543", + "valueExplanation": "GRASP", + "pre_value": "6.0", + "pre_valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141635.0", + "mileage": "123.3", + "value": "6.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827834593", + "time": "2025-12-04 13:57:14.593", + "valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "145785.0", + "mileage": "124.4", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827876093", + "time": "2025-12-04 13:57:56.093", + "valueExplanation": "GRASP", + "pre_value": "6.0", + "pre_valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146840.0", + "mileage": "124.7", + "value": "6.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827886643", + "time": "2025-12-04 13:58:06.643", + "valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147100.0", + "mileage": "124.7", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827889243", + "time": "2025-12-04 13:58:09.243", + "valueExplanation": "GRASP", + "pre_value": "6.0", + "pre_valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147175.0", + "mileage": "124.7", + "value": "6.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827889993", + "time": "2025-12-04 13:58:09.993", + "valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147280.0", + "mileage": "124.8", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827891043", + "time": "2025-12-04 13:58:11.043", + "valueExplanation": "GRASP", + "pre_value": "6.0", + "pre_valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147980.0", + "mileage": "124.9", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827898043", + "time": "2025-12-04 13:58:18.043", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148090.0", + "mileage": "125.0", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827899143", + "time": "2025-12-04 13:58:19.143", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148600.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904243", + "time": "2025-12-04 13:58:24.243", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148635.0", + "mileage": "125.1", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904593", + "time": "2025-12-04 13:58:24.593", + "valueExplanation": "TOUCH", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148690.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827905143", + "time": "2025-12-04 13:58:25.143", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148750.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827905743", + "time": "2025-12-04 13:58:25.743", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148825.0", + "mileage": "125.1", + "value": "6.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827906493", + "time": "2025-12-04 13:58:26.493", + "valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148890.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907143", + "time": "2025-12-04 13:58:27.143", + "valueExplanation": "GRASP", + "pre_value": "6.0", + "pre_valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148915.0", + "mileage": "125.1", + "value": "6.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907393", + "time": "2025-12-04 13:58:27.393", + "valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148980.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908043", + "time": "2025-12-04 13:58:28.043", + "valueExplanation": "GRASP", + "pre_value": "6.0", + "pre_valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148995.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908193", + "time": "2025-12-04 13:58:28.193", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149160.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909843", + "time": "2025-12-04 13:58:29.843", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149195.0", + "mileage": "125.1", + "value": "6.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827910193", + "time": "2025-12-04 13:58:30.193", + "valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "149240.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827910643", + "time": "2025-12-04 13:58:30.643", + "valueExplanation": "GRASP", + "pre_value": "6.0", + "pre_valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "149270.0", + "mileage": "125.1", + "value": "6.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827910943", + "time": "2025-12-04 13:58:30.943", + "valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "149710.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827915343", + "time": "2025-12-04 13:58:35.343", + "valueExplanation": "GRASP", + "pre_value": "6.0", + "pre_valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "149730.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827915543", + "time": "2025-12-04 13:58:35.543", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150220.0", + "mileage": "125.1", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827920443", + "time": "2025-12-04 13:58:40.443", + "valueExplanation": "TOUCH", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150285.0", + "mileage": "125.1", + "value": "2.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827921093", + "time": "2025-12-04 13:58:41.093", + "valueExplanation": "SLIGHTLY_TOUCH", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150290.0", + "mileage": "125.1", + "value": "0.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827921143", + "time": "2025-12-04 13:58:41.143", + "valueExplanation": "NOT_TOUCH", + "pre_value": "2.0", + "pre_valueExplanation": "SLIGHTLY_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155905.0", + "mileage": "125.1", + "value": "2.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:01.771", + "version": "v1.0", + "ts": "1764827977293", + "time": "2025-12-04 13:59:37.293", + "valueExplanation": "SLIGHTLY_TOUCH", + "pre_value": "0.0", + "pre_valueExplanation": "NOT_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155915.0", + "mileage": "125.1", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:01.771", + "version": "v1.0", + "ts": "1764827977393", + "time": "2025-12-04 13:59:37.393", + "valueExplanation": "TOUCH", + "pre_value": "2.0", + "pre_valueExplanation": "SLIGHTLY_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155925.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:01.771", + "version": "v1.0", + "ts": "1764827977493", + "time": "2025-12-04 13:59:37.493", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155935.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:01.771", + "version": "v1.0", + "ts": "1764827977593", + "time": "2025-12-04 13:59:37.593", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155960.0", + "mileage": "125.1", + "value": "6.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827977843", + "time": "2025-12-04 13:59:37.843", + "valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155995.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978193", + "time": "2025-12-04 13:59:38.193", + "valueExplanation": "GRASP", + "pre_value": "6.0", + "pre_valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156050.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978743", + "time": "2025-12-04 13:59:38.743", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156100.0", + "mileage": "125.1", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979243", + "time": "2025-12-04 13:59:39.243", + "valueExplanation": "TOUCH", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156175.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979993", + "time": "2025-12-04 13:59:39.993", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156190.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827980143", + "time": "2025-12-04 13:59:40.143", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156240.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827980643", + "time": "2025-12-04 13:59:40.643", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156250.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827980743", + "time": "2025-12-04 13:59:40.743", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156300.0", + "mileage": "125.1", + "value": "6.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981243", + "time": "2025-12-04 13:59:41.243", + "valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156320.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981443", + "time": "2025-12-04 13:59:41.443", + "valueExplanation": "GRASP", + "pre_value": "6.0", + "pre_valueExplanation": "SLIGHTLY_DOUBLE_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156355.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981793", + "time": "2025-12-04 13:59:41.793", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156360.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981843", + "time": "2025-12-04 13:59:41.843", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156410.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982343", + "time": "2025-12-04 13:59:42.343", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156435.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982593", + "time": "2025-12-04 13:59:42.593", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156460.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982843", + "time": "2025-12-04 13:59:42.843", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156480.0", + "mileage": "125.1", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827983043", + "time": "2025-12-04 13:59:43.043", + "valueExplanation": "TOUCH", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156490.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827983143", + "time": "2025-12-04 13:59:43.143", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156500.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827983243", + "time": "2025-12-04 13:59:43.243", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156915.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827987393", + "time": "2025-12-04 13:59:47.393", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156980.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827988043", + "time": "2025-12-04 13:59:48.043", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157410.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827992343", + "time": "2025-12-04 13:59:52.343", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157450.0", + "mileage": "125.1", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827992743", + "time": "2025-12-04 13:59:52.743", + "valueExplanation": "TOUCH", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157545.0", + "mileage": "125.1", + "value": "2.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993693", + "time": "2025-12-04 13:59:53.693", + "valueExplanation": "SLIGHTLY_TOUCH", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157555.0", + "mileage": "125.1", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993793", + "time": "2025-12-04 13:59:53.793", + "valueExplanation": "TOUCH", + "pre_value": "2.0", + "pre_valueExplanation": "SLIGHTLY_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157570.0", + "mileage": "125.1", + "value": "2.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993943", + "time": "2025-12-04 13:59:53.943", + "valueExplanation": "SLIGHTLY_TOUCH", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157620.0", + "mileage": "125.1", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994443", + "time": "2025-12-04 13:59:54.443", + "valueExplanation": "TOUCH", + "pre_value": "2.0", + "pre_valueExplanation": "SLIGHTLY_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157650.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994743", + "time": "2025-12-04 13:59:54.743", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157715.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827995393", + "time": "2025-12-04 13:59:55.393", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157800.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996243", + "time": "2025-12-04 13:59:56.243", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157815.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996393", + "time": "2025-12-04 13:59:56.393", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157835.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996593", + "time": "2025-12-04 13:59:56.593", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157925.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997493", + "time": "2025-12-04 13:59:57.493", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157975.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997993", + "time": "2025-12-04 13:59:57.993", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157990.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998143", + "time": "2025-12-04 13:59:58.143", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158010.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998343", + "time": "2025-12-04 13:59:58.343", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158030.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998543", + "time": "2025-12-04 13:59:58.543", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158045.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998693", + "time": "2025-12-04 13:59:58.693", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158050.0", + "mileage": "125.1", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998743", + "time": "2025-12-04 13:59:58.743", + "valueExplanation": "TOUCH", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158120.0", + "mileage": "125.1", + "value": "2.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764827999443", + "time": "2025-12-04 13:59:59.443", + "valueExplanation": "SLIGHTLY_TOUCH", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158135.0", + "mileage": "125.1", + "value": "0.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764827999593", + "time": "2025-12-04 13:59:59.593", + "valueExplanation": "NOT_TOUCH", + "pre_value": "2.0", + "pre_valueExplanation": "SLIGHTLY_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158170.0", + "mileage": "125.1", + "value": "2.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764827999943", + "time": "2025-12-04 13:59:59.943", + "valueExplanation": "SLIGHTLY_TOUCH", + "pre_value": "0.0", + "pre_valueExplanation": "NOT_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158185.0", + "mileage": "125.1", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828000093", + "time": "2025-12-04 14:00:00.093", + "valueExplanation": "TOUCH", + "pre_value": "2.0", + "pre_valueExplanation": "SLIGHTLY_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158190.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828000143", + "time": "2025-12-04 14:00:00.143", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158215.0", + "mileage": "125.1", + "value": "3.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828000393", + "time": "2025-12-04 14:00:00.393", + "valueExplanation": "GRASP", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158590.0", + "mileage": "125.1", + "value": "5.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828004143", + "time": "2025-12-04 14:00:04.143", + "valueExplanation": "SLIGHTLY_GRABBED", + "pre_value": "3.0", + "pre_valueExplanation": "GRASP", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158635.0", + "mileage": "125.1", + "value": "1.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828004593", + "time": "2025-12-04 14:00:04.593", + "valueExplanation": "TOUCH", + "pre_value": "5.0", + "pre_valueExplanation": "SLIGHTLY_GRABBED", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158645.0", + "mileage": "125.1", + "value": "2.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828004693", + "time": "2025-12-04 14:00:04.693", + "valueExplanation": "SLIGHTLY_TOUCH", + "pre_value": "1.0", + "pre_valueExplanation": "TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158650.0", + "mileage": "125.1", + "value": "0.0", + "signal": "HOSWD_HandsOn_Stat_Master", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828004743", + "time": "2025-12-04 14:00:04.743", + "valueExplanation": "NOT_TOUCH", + "pre_value": "2.0", + "pre_valueExplanation": "SLIGHTLY_TOUCH", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146955.0", + "mileage": "124.7", + "value": "-1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887793", + "time": "2025-12-04 13:58:07.793", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147015.0", + "mileage": "124.7", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827888393", + "time": "2025-12-04 13:58:08.393", + "valueExplanation": "", + "pre_value": "-1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147035.0", + "mileage": "124.7", + "value": "1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827888593", + "time": "2025-12-04 13:58:08.593", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147050.0", + "mileage": "124.7", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827888743", + "time": "2025-12-04 13:58:08.743", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147175.0", + "mileage": "124.7", + "value": "1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827889993", + "time": "2025-12-04 13:58:09.993", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147205.0", + "mileage": "124.8", + "value": "2.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827890293", + "time": "2025-12-04 13:58:10.293", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147220.0", + "mileage": "124.8", + "value": "1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827890443", + "time": "2025-12-04 13:58:10.443", + "valueExplanation": "", + "pre_value": "2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147270.0", + "mileage": "124.8", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827890943", + "time": "2025-12-04 13:58:10.943", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148515.0", + "mileage": "125.1", + "value": "-1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903393", + "time": "2025-12-04 13:58:23.393", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148540.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903643", + "time": "2025-12-04 13:58:23.643", + "valueExplanation": "", + "pre_value": "-1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148650.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904743", + "time": "2025-12-04 13:58:24.743", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148720.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827905443", + "time": "2025-12-04 13:58:25.443", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148895.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907193", + "time": "2025-12-04 13:58:27.193", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149000.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908243", + "time": "2025-12-04 13:58:28.243", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155960.0", + "mileage": "125.1", + "value": "-1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827977843", + "time": "2025-12-04 13:59:37.843", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155970.0", + "mileage": "125.1", + "value": "-2.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827977943", + "time": "2025-12-04 13:59:37.943", + "valueExplanation": "", + "pre_value": "-1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155975.0", + "mileage": "125.1", + "value": "-3.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827977993", + "time": "2025-12-04 13:59:37.993", + "valueExplanation": "", + "pre_value": "-2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155980.0", + "mileage": "125.1", + "value": "-4.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978043", + "time": "2025-12-04 13:59:38.043", + "valueExplanation": "", + "pre_value": "-3.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155985.0", + "mileage": "125.1", + "value": "-5.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978093", + "time": "2025-12-04 13:59:38.093", + "valueExplanation": "", + "pre_value": "-4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155990.0", + "mileage": "125.1", + "value": "-6.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978143", + "time": "2025-12-04 13:59:38.143", + "valueExplanation": "", + "pre_value": "-5.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155995.0", + "mileage": "125.1", + "value": "-7.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978193", + "time": "2025-12-04 13:59:38.193", + "valueExplanation": "", + "pre_value": "-6.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156000.0", + "mileage": "125.1", + "value": "-8.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978243", + "time": "2025-12-04 13:59:38.243", + "valueExplanation": "", + "pre_value": "-7.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156005.0", + "mileage": "125.1", + "value": "-9.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978293", + "time": "2025-12-04 13:59:38.293", + "valueExplanation": "", + "pre_value": "-8.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156010.0", + "mileage": "125.1", + "value": "-11.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978343", + "time": "2025-12-04 13:59:38.343", + "valueExplanation": "", + "pre_value": "-9.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156015.0", + "mileage": "125.1", + "value": "-12.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978393", + "time": "2025-12-04 13:59:38.393", + "valueExplanation": "", + "pre_value": "-11.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156020.0", + "mileage": "125.1", + "value": "-13.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978443", + "time": "2025-12-04 13:59:38.443", + "valueExplanation": "", + "pre_value": "-12.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156025.0", + "mileage": "125.1", + "value": "-14.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978493", + "time": "2025-12-04 13:59:38.493", + "valueExplanation": "", + "pre_value": "-13.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156035.0", + "mileage": "125.1", + "value": "-15.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978593", + "time": "2025-12-04 13:59:38.593", + "valueExplanation": "", + "pre_value": "-14.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156040.0", + "mileage": "125.1", + "value": "-16.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978643", + "time": "2025-12-04 13:59:38.643", + "valueExplanation": "", + "pre_value": "-15.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156050.0", + "mileage": "125.1", + "value": "-17.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978743", + "time": "2025-12-04 13:59:38.743", + "valueExplanation": "", + "pre_value": "-16.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156055.0", + "mileage": "125.1", + "value": "-18.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978793", + "time": "2025-12-04 13:59:38.793", + "valueExplanation": "", + "pre_value": "-17.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156065.0", + "mileage": "125.1", + "value": "-19.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978893", + "time": "2025-12-04 13:59:38.893", + "valueExplanation": "", + "pre_value": "-18.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156075.0", + "mileage": "125.1", + "value": "-20.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978993", + "time": "2025-12-04 13:59:38.993", + "valueExplanation": "", + "pre_value": "-19.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156085.0", + "mileage": "125.1", + "value": "-21.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979093", + "time": "2025-12-04 13:59:39.093", + "valueExplanation": "", + "pre_value": "-20.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156105.0", + "mileage": "125.1", + "value": "-22.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979293", + "time": "2025-12-04 13:59:39.293", + "valueExplanation": "", + "pre_value": "-21.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156125.0", + "mileage": "125.1", + "value": "-23.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979493", + "time": "2025-12-04 13:59:39.493", + "valueExplanation": "", + "pre_value": "-22.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156135.0", + "mileage": "125.1", + "value": "-24.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979593", + "time": "2025-12-04 13:59:39.593", + "valueExplanation": "", + "pre_value": "-23.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156140.0", + "mileage": "125.1", + "value": "-25.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979643", + "time": "2025-12-04 13:59:39.643", + "valueExplanation": "", + "pre_value": "-24.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156145.0", + "mileage": "125.1", + "value": "-26.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979693", + "time": "2025-12-04 13:59:39.693", + "valueExplanation": "", + "pre_value": "-25.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156150.0", + "mileage": "125.1", + "value": "-27.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979743", + "time": "2025-12-04 13:59:39.743", + "valueExplanation": "", + "pre_value": "-26.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156155.0", + "mileage": "125.1", + "value": "-28.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979793", + "time": "2025-12-04 13:59:39.793", + "valueExplanation": "", + "pre_value": "-27.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156160.0", + "mileage": "125.1", + "value": "-29.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979843", + "time": "2025-12-04 13:59:39.843", + "valueExplanation": "", + "pre_value": "-28.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156170.0", + "mileage": "125.1", + "value": "-30.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979943", + "time": "2025-12-04 13:59:39.943", + "valueExplanation": "", + "pre_value": "-29.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156175.0", + "mileage": "125.1", + "value": "-31.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979993", + "time": "2025-12-04 13:59:39.993", + "valueExplanation": "", + "pre_value": "-30.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156180.0", + "mileage": "125.1", + "value": "-32.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827980043", + "time": "2025-12-04 13:59:40.043", + "valueExplanation": "", + "pre_value": "-31.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156190.0", + "mileage": "125.1", + "value": "-33.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827980143", + "time": "2025-12-04 13:59:40.143", + "valueExplanation": "", + "pre_value": "-32.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156200.0", + "mileage": "125.1", + "value": "-32.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827980243", + "time": "2025-12-04 13:59:40.243", + "valueExplanation": "", + "pre_value": "-33.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156215.0", + "mileage": "125.1", + "value": "-31.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827980393", + "time": "2025-12-04 13:59:40.393", + "valueExplanation": "", + "pre_value": "-32.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156230.0", + "mileage": "125.1", + "value": "-30.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827980543", + "time": "2025-12-04 13:59:40.543", + "valueExplanation": "", + "pre_value": "-31.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156270.0", + "mileage": "125.1", + "value": "-29.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827980943", + "time": "2025-12-04 13:59:40.943", + "valueExplanation": "", + "pre_value": "-30.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156285.0", + "mileage": "125.1", + "value": "-28.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981093", + "time": "2025-12-04 13:59:41.093", + "valueExplanation": "", + "pre_value": "-29.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156290.0", + "mileage": "125.1", + "value": "-27.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981143", + "time": "2025-12-04 13:59:41.143", + "valueExplanation": "", + "pre_value": "-28.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156300.0", + "mileage": "125.1", + "value": "-26.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981243", + "time": "2025-12-04 13:59:41.243", + "valueExplanation": "", + "pre_value": "-27.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156305.0", + "mileage": "125.1", + "value": "-25.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981293", + "time": "2025-12-04 13:59:41.293", + "valueExplanation": "", + "pre_value": "-26.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156315.0", + "mileage": "125.1", + "value": "-24.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981393", + "time": "2025-12-04 13:59:41.393", + "valueExplanation": "", + "pre_value": "-25.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156320.0", + "mileage": "125.1", + "value": "-23.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981443", + "time": "2025-12-04 13:59:41.443", + "valueExplanation": "", + "pre_value": "-24.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156325.0", + "mileage": "125.1", + "value": "-22.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981493", + "time": "2025-12-04 13:59:41.493", + "valueExplanation": "", + "pre_value": "-23.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156330.0", + "mileage": "125.1", + "value": "-21.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981543", + "time": "2025-12-04 13:59:41.543", + "valueExplanation": "", + "pre_value": "-22.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156335.0", + "mileage": "125.1", + "value": "-20.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981593", + "time": "2025-12-04 13:59:41.593", + "valueExplanation": "", + "pre_value": "-21.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156340.0", + "mileage": "125.1", + "value": "-19.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981643", + "time": "2025-12-04 13:59:41.643", + "valueExplanation": "", + "pre_value": "-20.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156350.0", + "mileage": "125.1", + "value": "-18.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981743", + "time": "2025-12-04 13:59:41.743", + "valueExplanation": "", + "pre_value": "-19.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156355.0", + "mileage": "125.1", + "value": "-17.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981793", + "time": "2025-12-04 13:59:41.793", + "valueExplanation": "", + "pre_value": "-18.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156370.0", + "mileage": "125.1", + "value": "-16.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981943", + "time": "2025-12-04 13:59:41.943", + "valueExplanation": "", + "pre_value": "-17.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156375.0", + "mileage": "125.1", + "value": "-15.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981993", + "time": "2025-12-04 13:59:41.993", + "valueExplanation": "", + "pre_value": "-16.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156380.0", + "mileage": "125.1", + "value": "-14.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982043", + "time": "2025-12-04 13:59:42.043", + "valueExplanation": "", + "pre_value": "-15.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156385.0", + "mileage": "125.1", + "value": "-13.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982093", + "time": "2025-12-04 13:59:42.093", + "valueExplanation": "", + "pre_value": "-14.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156390.0", + "mileage": "125.1", + "value": "-11.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982143", + "time": "2025-12-04 13:59:42.143", + "valueExplanation": "", + "pre_value": "-13.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156400.0", + "mileage": "125.1", + "value": "-10.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982243", + "time": "2025-12-04 13:59:42.243", + "valueExplanation": "", + "pre_value": "-11.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156405.0", + "mileage": "125.1", + "value": "-8.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982293", + "time": "2025-12-04 13:59:42.293", + "valueExplanation": "", + "pre_value": "-10.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156410.0", + "mileage": "125.1", + "value": "-7.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982343", + "time": "2025-12-04 13:59:42.343", + "valueExplanation": "", + "pre_value": "-8.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156415.0", + "mileage": "125.1", + "value": "-6.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982393", + "time": "2025-12-04 13:59:42.393", + "valueExplanation": "", + "pre_value": "-7.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156420.0", + "mileage": "125.1", + "value": "-4.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982443", + "time": "2025-12-04 13:59:42.443", + "valueExplanation": "", + "pre_value": "-6.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156425.0", + "mileage": "125.1", + "value": "-3.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982493", + "time": "2025-12-04 13:59:42.493", + "valueExplanation": "", + "pre_value": "-4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156430.0", + "mileage": "125.1", + "value": "-2.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982543", + "time": "2025-12-04 13:59:42.543", + "valueExplanation": "", + "pre_value": "-3.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156435.0", + "mileage": "125.1", + "value": "-1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982593", + "time": "2025-12-04 13:59:42.593", + "valueExplanation": "", + "pre_value": "-2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156440.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982643", + "time": "2025-12-04 13:59:42.643", + "valueExplanation": "", + "pre_value": "-1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156450.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982743", + "time": "2025-12-04 13:59:42.743", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156490.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827983143", + "time": "2025-12-04 13:59:43.143", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156505.0", + "mileage": "125.1", + "value": "-1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827983293", + "time": "2025-12-04 13:59:43.293", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156735.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827985593", + "time": "2025-12-04 13:59:45.593", + "valueExplanation": "", + "pre_value": "-1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156755.0", + "mileage": "125.1", + "value": "-1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827985793", + "time": "2025-12-04 13:59:45.793", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156825.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827986493", + "time": "2025-12-04 13:59:46.493", + "valueExplanation": "", + "pre_value": "-1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157280.0", + "mileage": "125.1", + "value": "-1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991043", + "time": "2025-12-04 13:59:51.043", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157365.0", + "mileage": "125.1", + "value": "-2.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991893", + "time": "2025-12-04 13:59:51.893", + "valueExplanation": "", + "pre_value": "-1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157375.0", + "mileage": "125.1", + "value": "-3.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991993", + "time": "2025-12-04 13:59:51.993", + "valueExplanation": "", + "pre_value": "-2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157385.0", + "mileage": "125.1", + "value": "-4.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827992093", + "time": "2025-12-04 13:59:52.093", + "valueExplanation": "", + "pre_value": "-3.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157390.0", + "mileage": "125.1", + "value": "-5.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827992143", + "time": "2025-12-04 13:59:52.143", + "valueExplanation": "", + "pre_value": "-4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157395.0", + "mileage": "125.1", + "value": "-6.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827992193", + "time": "2025-12-04 13:59:52.193", + "valueExplanation": "", + "pre_value": "-5.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157400.0", + "mileage": "125.1", + "value": "-8.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827992243", + "time": "2025-12-04 13:59:52.243", + "valueExplanation": "", + "pre_value": "-6.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157405.0", + "mileage": "125.1", + "value": "-9.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827992293", + "time": "2025-12-04 13:59:52.293", + "valueExplanation": "", + "pre_value": "-8.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157410.0", + "mileage": "125.1", + "value": "-10.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827992343", + "time": "2025-12-04 13:59:52.343", + "valueExplanation": "", + "pre_value": "-9.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157415.0", + "mileage": "125.1", + "value": "-11.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827992393", + "time": "2025-12-04 13:59:52.393", + "valueExplanation": "", + "pre_value": "-10.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157420.0", + "mileage": "125.1", + "value": "-13.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827992443", + "time": "2025-12-04 13:59:52.443", + "valueExplanation": "", + "pre_value": "-11.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157425.0", + "mileage": "125.1", + "value": "-14.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827992493", + "time": "2025-12-04 13:59:52.493", + "valueExplanation": "", + "pre_value": "-13.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157430.0", + "mileage": "125.1", + "value": "-15.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827992543", + "time": "2025-12-04 13:59:52.543", + "valueExplanation": "", + "pre_value": "-14.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157435.0", + "mileage": "125.1", + "value": "-16.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827992593", + "time": "2025-12-04 13:59:52.593", + "valueExplanation": "", + "pre_value": "-15.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157440.0", + "mileage": "125.1", + "value": "-18.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827992643", + "time": "2025-12-04 13:59:52.643", + "valueExplanation": "", + "pre_value": "-16.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157450.0", + "mileage": "125.1", + "value": "-19.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827992743", + "time": "2025-12-04 13:59:52.743", + "valueExplanation": "", + "pre_value": "-18.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157455.0", + "mileage": "125.1", + "value": "-20.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827992793", + "time": "2025-12-04 13:59:52.793", + "valueExplanation": "", + "pre_value": "-19.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157465.0", + "mileage": "125.1", + "value": "-21.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827992893", + "time": "2025-12-04 13:59:52.893", + "valueExplanation": "", + "pre_value": "-20.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157475.0", + "mileage": "125.1", + "value": "-22.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827992993", + "time": "2025-12-04 13:59:52.993", + "valueExplanation": "", + "pre_value": "-21.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157485.0", + "mileage": "125.1", + "value": "-23.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993093", + "time": "2025-12-04 13:59:53.093", + "valueExplanation": "", + "pre_value": "-22.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157490.0", + "mileage": "125.1", + "value": "-22.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993143", + "time": "2025-12-04 13:59:53.143", + "valueExplanation": "", + "pre_value": "-23.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157510.0", + "mileage": "125.1", + "value": "-21.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993343", + "time": "2025-12-04 13:59:53.343", + "valueExplanation": "", + "pre_value": "-22.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157520.0", + "mileage": "125.1", + "value": "-20.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993443", + "time": "2025-12-04 13:59:53.443", + "valueExplanation": "", + "pre_value": "-21.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157530.0", + "mileage": "125.1", + "value": "-19.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993543", + "time": "2025-12-04 13:59:53.543", + "valueExplanation": "", + "pre_value": "-20.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157535.0", + "mileage": "125.1", + "value": "-18.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993593", + "time": "2025-12-04 13:59:53.593", + "valueExplanation": "", + "pre_value": "-19.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157545.0", + "mileage": "125.1", + "value": "-17.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993693", + "time": "2025-12-04 13:59:53.693", + "valueExplanation": "", + "pre_value": "-18.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157550.0", + "mileage": "125.1", + "value": "-16.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993743", + "time": "2025-12-04 13:59:53.743", + "valueExplanation": "", + "pre_value": "-17.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157560.0", + "mileage": "125.1", + "value": "-15.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993843", + "time": "2025-12-04 13:59:53.843", + "valueExplanation": "", + "pre_value": "-16.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157570.0", + "mileage": "125.1", + "value": "-14.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993943", + "time": "2025-12-04 13:59:53.943", + "valueExplanation": "", + "pre_value": "-15.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157575.0", + "mileage": "125.1", + "value": "-13.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993993", + "time": "2025-12-04 13:59:53.993", + "valueExplanation": "", + "pre_value": "-14.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157580.0", + "mileage": "125.1", + "value": "-12.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994043", + "time": "2025-12-04 13:59:54.043", + "valueExplanation": "", + "pre_value": "-13.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157590.0", + "mileage": "125.1", + "value": "-11.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994143", + "time": "2025-12-04 13:59:54.143", + "valueExplanation": "", + "pre_value": "-12.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157600.0", + "mileage": "125.1", + "value": "-10.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994243", + "time": "2025-12-04 13:59:54.243", + "valueExplanation": "", + "pre_value": "-11.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157605.0", + "mileage": "125.1", + "value": "-9.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994293", + "time": "2025-12-04 13:59:54.293", + "valueExplanation": "", + "pre_value": "-10.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157615.0", + "mileage": "125.1", + "value": "-8.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994393", + "time": "2025-12-04 13:59:54.393", + "valueExplanation": "", + "pre_value": "-9.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157620.0", + "mileage": "125.1", + "value": "-7.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994443", + "time": "2025-12-04 13:59:54.443", + "valueExplanation": "", + "pre_value": "-8.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157630.0", + "mileage": "125.1", + "value": "-6.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994543", + "time": "2025-12-04 13:59:54.543", + "valueExplanation": "", + "pre_value": "-7.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157640.0", + "mileage": "125.1", + "value": "-5.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994643", + "time": "2025-12-04 13:59:54.643", + "valueExplanation": "", + "pre_value": "-6.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157645.0", + "mileage": "125.1", + "value": "-4.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994693", + "time": "2025-12-04 13:59:54.693", + "valueExplanation": "", + "pre_value": "-5.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157660.0", + "mileage": "125.1", + "value": "-3.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994843", + "time": "2025-12-04 13:59:54.843", + "valueExplanation": "", + "pre_value": "-4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157695.0", + "mileage": "125.1", + "value": "-2.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827995193", + "time": "2025-12-04 13:59:55.193", + "valueExplanation": "", + "pre_value": "-3.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157720.0", + "mileage": "125.1", + "value": "-1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827995443", + "time": "2025-12-04 13:59:55.443", + "valueExplanation": "", + "pre_value": "-2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157750.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827995743", + "time": "2025-12-04 13:59:55.743", + "valueExplanation": "", + "pre_value": "-1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157770.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827995943", + "time": "2025-12-04 13:59:55.943", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157780.0", + "mileage": "125.1", + "value": "2.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996043", + "time": "2025-12-04 13:59:56.043", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157790.0", + "mileage": "125.1", + "value": "3.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996143", + "time": "2025-12-04 13:59:56.143", + "valueExplanation": "", + "pre_value": "2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157795.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996193", + "time": "2025-12-04 13:59:56.193", + "valueExplanation": "", + "pre_value": "3.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157800.0", + "mileage": "125.1", + "value": "5.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996243", + "time": "2025-12-04 13:59:56.243", + "valueExplanation": "", + "pre_value": "4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157805.0", + "mileage": "125.1", + "value": "6.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996293", + "time": "2025-12-04 13:59:56.293", + "valueExplanation": "", + "pre_value": "5.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157810.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996343", + "time": "2025-12-04 13:59:56.343", + "valueExplanation": "", + "pre_value": "6.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157815.0", + "mileage": "125.1", + "value": "9.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996393", + "time": "2025-12-04 13:59:56.393", + "valueExplanation": "", + "pre_value": "7.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157820.0", + "mileage": "125.1", + "value": "10.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996443", + "time": "2025-12-04 13:59:56.443", + "valueExplanation": "", + "pre_value": "9.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157825.0", + "mileage": "125.1", + "value": "11.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996493", + "time": "2025-12-04 13:59:56.493", + "valueExplanation": "", + "pre_value": "10.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157830.0", + "mileage": "125.1", + "value": "13.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996543", + "time": "2025-12-04 13:59:56.543", + "valueExplanation": "", + "pre_value": "11.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157835.0", + "mileage": "125.1", + "value": "14.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996593", + "time": "2025-12-04 13:59:56.593", + "valueExplanation": "", + "pre_value": "13.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157840.0", + "mileage": "125.1", + "value": "15.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996643", + "time": "2025-12-04 13:59:56.643", + "valueExplanation": "", + "pre_value": "14.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157845.0", + "mileage": "125.1", + "value": "16.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996693", + "time": "2025-12-04 13:59:56.693", + "valueExplanation": "", + "pre_value": "15.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157850.0", + "mileage": "125.1", + "value": "17.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996743", + "time": "2025-12-04 13:59:56.743", + "valueExplanation": "", + "pre_value": "16.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157875.0", + "mileage": "125.1", + "value": "16.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827996993", + "time": "2025-12-04 13:59:56.993", + "valueExplanation": "", + "pre_value": "17.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157880.0", + "mileage": "125.1", + "value": "15.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997043", + "time": "2025-12-04 13:59:57.043", + "valueExplanation": "", + "pre_value": "16.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157885.0", + "mileage": "125.1", + "value": "14.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997093", + "time": "2025-12-04 13:59:57.093", + "valueExplanation": "", + "pre_value": "15.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157890.0", + "mileage": "125.1", + "value": "13.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997143", + "time": "2025-12-04 13:59:57.143", + "valueExplanation": "", + "pre_value": "14.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157895.0", + "mileage": "125.1", + "value": "12.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997193", + "time": "2025-12-04 13:59:57.193", + "valueExplanation": "", + "pre_value": "13.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157900.0", + "mileage": "125.1", + "value": "11.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997243", + "time": "2025-12-04 13:59:57.243", + "valueExplanation": "", + "pre_value": "12.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157905.0", + "mileage": "125.1", + "value": "10.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997293", + "time": "2025-12-04 13:59:57.293", + "valueExplanation": "", + "pre_value": "11.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157910.0", + "mileage": "125.1", + "value": "9.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997343", + "time": "2025-12-04 13:59:57.343", + "valueExplanation": "", + "pre_value": "10.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157915.0", + "mileage": "125.1", + "value": "8.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997393", + "time": "2025-12-04 13:59:57.393", + "valueExplanation": "", + "pre_value": "9.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157920.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997443", + "time": "2025-12-04 13:59:57.443", + "valueExplanation": "", + "pre_value": "8.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157925.0", + "mileage": "125.1", + "value": "6.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997493", + "time": "2025-12-04 13:59:57.493", + "valueExplanation": "", + "pre_value": "7.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157930.0", + "mileage": "125.1", + "value": "5.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997543", + "time": "2025-12-04 13:59:57.543", + "valueExplanation": "", + "pre_value": "6.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157935.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997593", + "time": "2025-12-04 13:59:57.593", + "valueExplanation": "", + "pre_value": "5.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157940.0", + "mileage": "125.1", + "value": "3.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997643", + "time": "2025-12-04 13:59:57.643", + "valueExplanation": "", + "pre_value": "4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157945.0", + "mileage": "125.1", + "value": "2.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997693", + "time": "2025-12-04 13:59:57.693", + "valueExplanation": "", + "pre_value": "3.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157950.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997743", + "time": "2025-12-04 13:59:57.743", + "valueExplanation": "", + "pre_value": "2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157960.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997843", + "time": "2025-12-04 13:59:57.843", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157965.0", + "mileage": "125.1", + "value": "-1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997893", + "time": "2025-12-04 13:59:57.893", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157970.0", + "mileage": "125.1", + "value": "-2.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997943", + "time": "2025-12-04 13:59:57.943", + "valueExplanation": "", + "pre_value": "-1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157975.0", + "mileage": "125.1", + "value": "-4.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997993", + "time": "2025-12-04 13:59:57.993", + "valueExplanation": "", + "pre_value": "-2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158000.0", + "mileage": "125.1", + "value": "-3.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998243", + "time": "2025-12-04 13:59:58.243", + "valueExplanation": "", + "pre_value": "-4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158010.0", + "mileage": "125.1", + "value": "-2.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998343", + "time": "2025-12-04 13:59:58.343", + "valueExplanation": "", + "pre_value": "-3.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158015.0", + "mileage": "125.1", + "value": "-1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998393", + "time": "2025-12-04 13:59:58.393", + "valueExplanation": "", + "pre_value": "-2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158025.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998493", + "time": "2025-12-04 13:59:58.493", + "valueExplanation": "", + "pre_value": "-1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158030.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998543", + "time": "2025-12-04 13:59:58.543", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158270.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MMLAT_OUT_ADAS_FtWhlAngl_Rq_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828000943", + "time": "2025-12-04 14:00:00.943", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "130755.0", + "mileage": "120.8", + "value": "6.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827725793", + "time": "2025-12-04 13:55:25.793", + "valueExplanation": "ROI_06", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "130870.0", + "mileage": "120.9", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827726943", + "time": "2025-12-04 13:55:26.943", + "valueExplanation": "ROI_01", + "pre_value": "6.0", + "pre_valueExplanation": "ROI_06", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "130915.0", + "mileage": "120.9", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827727393", + "time": "2025-12-04 13:55:27.393", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131075.0", + "mileage": "120.9", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827728993", + "time": "2025-12-04 13:55:28.993", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131450.0", + "mileage": "121.0", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827732743", + "time": "2025-12-04 13:55:32.743", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131490.0", + "mileage": "121.0", + "value": "9.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827733143", + "time": "2025-12-04 13:55:33.143", + "valueExplanation": "ROI_09", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131550.0", + "mileage": "121.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827733743", + "time": "2025-12-04 13:55:33.743", + "valueExplanation": "ROI_04", + "pre_value": "9.0", + "pre_valueExplanation": "ROI_09", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131580.0", + "mileage": "121.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827734043", + "time": "2025-12-04 13:55:34.043", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131650.0", + "mileage": "121.1", + "value": "8.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827734743", + "time": "2025-12-04 13:55:34.743", + "valueExplanation": "ROI_08", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131705.0", + "mileage": "121.1", + "value": "9.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827735293", + "time": "2025-12-04 13:55:35.293", + "valueExplanation": "ROI_09", + "pre_value": "8.0", + "pre_valueExplanation": "ROI_08", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131760.0", + "mileage": "121.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827735843", + "time": "2025-12-04 13:55:35.843", + "valueExplanation": "ROI_04", + "pre_value": "9.0", + "pre_valueExplanation": "ROI_09", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132080.0", + "mileage": "121.2", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827739043", + "time": "2025-12-04 13:55:39.043", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132145.0", + "mileage": "121.2", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827739693", + "time": "2025-12-04 13:55:39.693", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132270.0", + "mileage": "121.2", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827740943", + "time": "2025-12-04 13:55:40.943", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132295.0", + "mileage": "121.2", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827741193", + "time": "2025-12-04 13:55:41.193", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132485.0", + "mileage": "121.3", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827743093", + "time": "2025-12-04 13:55:43.093", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132560.0", + "mileage": "121.3", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827743843", + "time": "2025-12-04 13:55:43.843", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132805.0", + "mileage": "121.4", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827746293", + "time": "2025-12-04 13:55:46.293", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132935.0", + "mileage": "121.4", + "value": "6.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827747593", + "time": "2025-12-04 13:55:47.593", + "valueExplanation": "ROI_06", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132965.0", + "mileage": "121.4", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827747893", + "time": "2025-12-04 13:55:47.893", + "valueExplanation": "ROI_01", + "pre_value": "6.0", + "pre_valueExplanation": "ROI_06", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132985.0", + "mileage": "121.4", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827748093", + "time": "2025-12-04 13:55:48.093", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "133185.0", + "mileage": "121.4", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827750093", + "time": "2025-12-04 13:55:50.093", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "133225.0", + "mileage": "121.4", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827750493", + "time": "2025-12-04 13:55:50.493", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136790.0", + "mileage": "122.2", + "value": "15.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827786143", + "time": "2025-12-04 13:56:26.143", + "valueExplanation": "ROI_15", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136850.0", + "mileage": "122.2", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827786743", + "time": "2025-12-04 13:56:26.743", + "valueExplanation": "ROI_04", + "pre_value": "15.0", + "pre_valueExplanation": "ROI_15", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "137200.0", + "mileage": "122.3", + "value": "29.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827790243", + "time": "2025-12-04 13:56:30.243", + "valueExplanation": "ROI_29", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "137245.0", + "mileage": "122.3", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827790693", + "time": "2025-12-04 13:56:30.693", + "valueExplanation": "ROI_04", + "pre_value": "29.0", + "pre_valueExplanation": "ROI_29", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "137620.0", + "mileage": "122.4", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827794443", + "time": "2025-12-04 13:56:34.443", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "137715.0", + "mileage": "122.4", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827795393", + "time": "2025-12-04 13:56:35.393", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "138130.0", + "mileage": "122.5", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827799543", + "time": "2025-12-04 13:56:39.543", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "138325.0", + "mileage": "122.5", + "value": "8.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827801493", + "time": "2025-12-04 13:56:41.493", + "valueExplanation": "ROI_08", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "138440.0", + "mileage": "122.6", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827802643", + "time": "2025-12-04 13:56:42.643", + "valueExplanation": "ROI_04", + "pre_value": "8.0", + "pre_valueExplanation": "ROI_08", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "138560.0", + "mileage": "122.6", + "value": "6.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827803843", + "time": "2025-12-04 13:56:43.843", + "valueExplanation": "ROI_06", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "138970.0", + "mileage": "122.7", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827807943", + "time": "2025-12-04 13:56:47.943", + "valueExplanation": "ROI_01", + "pre_value": "6.0", + "pre_valueExplanation": "ROI_06", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139020.0", + "mileage": "122.7", + "value": "6.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827808443", + "time": "2025-12-04 13:56:48.443", + "valueExplanation": "ROI_06", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139275.0", + "mileage": "122.7", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827810993", + "time": "2025-12-04 13:56:50.993", + "valueExplanation": "ROI_04", + "pre_value": "6.0", + "pre_valueExplanation": "ROI_06", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139425.0", + "mileage": "122.8", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827812493", + "time": "2025-12-04 13:56:52.493", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139490.0", + "mileage": "122.8", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827813143", + "time": "2025-12-04 13:56:53.143", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139735.0", + "mileage": "122.8", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827815593", + "time": "2025-12-04 13:56:55.593", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139795.0", + "mileage": "122.9", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827816193", + "time": "2025-12-04 13:56:56.193", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139845.0", + "mileage": "122.9", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827816693", + "time": "2025-12-04 13:56:56.693", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140030.0", + "mileage": "122.9", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827818543", + "time": "2025-12-04 13:56:58.543", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140705.0", + "mileage": "123.1", + "value": "6.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827825293", + "time": "2025-12-04 13:57:05.293", + "valueExplanation": "ROI_06", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140980.0", + "mileage": "123.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827828043", + "time": "2025-12-04 13:57:08.043", + "valueExplanation": "ROI_04", + "pre_value": "6.0", + "pre_valueExplanation": "ROI_06", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141135.0", + "mileage": "123.1", + "value": "6.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827829593", + "time": "2025-12-04 13:57:09.593", + "valueExplanation": "ROI_06", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141460.0", + "mileage": "123.2", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827832843", + "time": "2025-12-04 13:57:12.843", + "valueExplanation": "ROI_01", + "pre_value": "6.0", + "pre_valueExplanation": "ROI_06", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141490.0", + "mileage": "123.2", + "value": "6.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827833143", + "time": "2025-12-04 13:57:13.143", + "valueExplanation": "ROI_06", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141645.0", + "mileage": "123.3", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827834693", + "time": "2025-12-04 13:57:14.693", + "valueExplanation": "ROI_01", + "pre_value": "6.0", + "pre_valueExplanation": "ROI_06", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141735.0", + "mileage": "123.3", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827835593", + "time": "2025-12-04 13:57:15.593", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141840.0", + "mileage": "123.3", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827836643", + "time": "2025-12-04 13:57:16.643", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141930.0", + "mileage": "123.3", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827837543", + "time": "2025-12-04 13:57:17.543", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "142350.0", + "mileage": "123.4", + "value": "6.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827841743", + "time": "2025-12-04 13:57:21.743", + "valueExplanation": "ROI_06", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "142440.0", + "mileage": "123.5", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827842643", + "time": "2025-12-04 13:57:22.643", + "valueExplanation": "ROI_04", + "pre_value": "6.0", + "pre_valueExplanation": "ROI_06", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "143730.0", + "mileage": "123.8", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827855543", + "time": "2025-12-04 13:57:35.543", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "143990.0", + "mileage": "123.9", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827858143", + "time": "2025-12-04 13:57:38.143", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "144180.0", + "mileage": "123.9", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827860043", + "time": "2025-12-04 13:57:40.043", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "144250.0", + "mileage": "124.0", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827860743", + "time": "2025-12-04 13:57:40.743", + "valueExplanation": "ROI_04", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "144275.0", + "mileage": "124.0", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827860993", + "time": "2025-12-04 13:57:40.993", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "144350.0", + "mileage": "124.0", + "value": "6.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827861743", + "time": "2025-12-04 13:57:41.743", + "valueExplanation": "ROI_06", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "144560.0", + "mileage": "124.0", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827863843", + "time": "2025-12-04 13:57:43.843", + "valueExplanation": "ROI_04", + "pre_value": "6.0", + "pre_valueExplanation": "ROI_06", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "144620.0", + "mileage": "124.1", + "value": "9.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827864443", + "time": "2025-12-04 13:57:44.443", + "valueExplanation": "ROI_09", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "144720.0", + "mileage": "124.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827865443", + "time": "2025-12-04 13:57:45.443", + "valueExplanation": "ROI_04", + "pre_value": "9.0", + "pre_valueExplanation": "ROI_09", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "145555.0", + "mileage": "124.3", + "value": "20.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827873793", + "time": "2025-12-04 13:57:53.793", + "valueExplanation": "ROI_20", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146055.0", + "mileage": "124.4", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827878793", + "time": "2025-12-04 13:57:58.793", + "valueExplanation": "ROI_01", + "pre_value": "20.0", + "pre_valueExplanation": "ROI_20", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146160.0", + "mileage": "124.5", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827879843", + "time": "2025-12-04 13:57:59.843", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146240.0", + "mileage": "124.5", + "value": "9.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827880643", + "time": "2025-12-04 13:58:00.643", + "valueExplanation": "ROI_09", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146405.0", + "mileage": "124.5", + "value": "8.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827882293", + "time": "2025-12-04 13:58:02.293", + "valueExplanation": "ROI_08", + "pre_value": "9.0", + "pre_valueExplanation": "ROI_09", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146520.0", + "mileage": "124.6", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827883443", + "time": "2025-12-04 13:58:03.443", + "valueExplanation": "ROI_04", + "pre_value": "8.0", + "pre_valueExplanation": "ROI_08", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146565.0", + "mileage": "124.6", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827883893", + "time": "2025-12-04 13:58:03.893", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146930.0", + "mileage": "124.7", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887543", + "time": "2025-12-04 13:58:07.543", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147100.0", + "mileage": "124.7", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827889243", + "time": "2025-12-04 13:58:09.243", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147175.0", + "mileage": "124.7", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827889993", + "time": "2025-12-04 13:58:09.993", + "valueExplanation": "ROI_04", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147410.0", + "mileage": "124.8", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827892343", + "time": "2025-12-04 13:58:12.343", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147490.0", + "mileage": "124.8", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827893143", + "time": "2025-12-04 13:58:13.143", + "valueExplanation": "ROI_04", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147570.0", + "mileage": "124.8", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827893943", + "time": "2025-12-04 13:58:13.943", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147625.0", + "mileage": "124.9", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827894493", + "time": "2025-12-04 13:58:14.493", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147860.0", + "mileage": "124.9", + "value": "10.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827896843", + "time": "2025-12-04 13:58:16.843", + "valueExplanation": "ROI_10", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147905.0", + "mileage": "124.9", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827897293", + "time": "2025-12-04 13:58:17.293", + "valueExplanation": "ROI_04", + "pre_value": "10.0", + "pre_valueExplanation": "ROI_10", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147960.0", + "mileage": "124.9", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827897843", + "time": "2025-12-04 13:58:17.843", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148080.0", + "mileage": "125.0", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827899043", + "time": "2025-12-04 13:58:19.043", + "valueExplanation": "ROI_04", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148900.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907243", + "time": "2025-12-04 13:58:27.243", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148970.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907943", + "time": "2025-12-04 13:58:27.943", + "valueExplanation": "ROI_04", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149110.0", + "mileage": "125.1", + "value": "29.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909343", + "time": "2025-12-04 13:58:29.343", + "valueExplanation": "ROI_29", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149145.0", + "mileage": "125.1", + "value": "17.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909693", + "time": "2025-12-04 13:58:29.693", + "valueExplanation": "ROI_17", + "pre_value": "29.0", + "pre_valueExplanation": "ROI_29", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "149570.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827913943", + "time": "2025-12-04 13:58:33.943", + "valueExplanation": "ROI_07", + "pre_value": "17.0", + "pre_valueExplanation": "ROI_17", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "149660.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827914843", + "time": "2025-12-04 13:58:34.843", + "valueExplanation": "ROI_01", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150015.0", + "mileage": "125.1", + "value": "6.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827918393", + "time": "2025-12-04 13:58:38.393", + "valueExplanation": "ROI_06", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150140.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827919643", + "time": "2025-12-04 13:58:39.643", + "valueExplanation": "ROI_01", + "pre_value": "6.0", + "pre_valueExplanation": "ROI_06", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150255.0", + "mileage": "125.1", + "value": "20.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827920793", + "time": "2025-12-04 13:58:40.793", + "valueExplanation": "ROI_20", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150355.0", + "mileage": "125.1", + "value": "29.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827921793", + "time": "2025-12-04 13:58:41.793", + "valueExplanation": "ROI_29", + "pre_value": "20.0", + "pre_valueExplanation": "ROI_20", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150435.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827922593", + "time": "2025-12-04 13:58:42.593", + "valueExplanation": "ROI_07", + "pre_value": "29.0", + "pre_valueExplanation": "ROI_29", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150535.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827923593", + "time": "2025-12-04 13:58:43.593", + "valueExplanation": "ROI_04", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150705.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827925293", + "time": "2025-12-04 13:58:45.293", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150870.0", + "mileage": "125.1", + "value": "13.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827926943", + "time": "2025-12-04 13:58:46.943", + "valueExplanation": "ROI_13", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "151040.0", + "mileage": "125.1", + "value": "6.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827928643", + "time": "2025-12-04 13:58:48.643", + "valueExplanation": "ROI_06", + "pre_value": "13.0", + "pre_valueExplanation": "ROI_13", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "151345.0", + "mileage": "125.1", + "value": "13.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827931693", + "time": "2025-12-04 13:58:51.693", + "valueExplanation": "ROI_13", + "pre_value": "6.0", + "pre_valueExplanation": "ROI_06", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "151750.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827935743", + "time": "2025-12-04 13:58:55.743", + "valueExplanation": "ROI_07", + "pre_value": "13.0", + "pre_valueExplanation": "ROI_13", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "152085.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827939093", + "time": "2025-12-04 13:58:59.093", + "valueExplanation": "ROI_04", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "152240.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827940643", + "time": "2025-12-04 13:59:00.643", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "152710.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827945343", + "time": "2025-12-04 13:59:05.343", + "valueExplanation": "ROI_04", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "152785.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827946093", + "time": "2025-12-04 13:59:06.093", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "153060.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827948843", + "time": "2025-12-04 13:59:08.843", + "valueExplanation": "ROI_04", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "153210.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827950343", + "time": "2025-12-04 13:59:10.343", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "153635.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827954593", + "time": "2025-12-04 13:59:14.593", + "valueExplanation": "NO_GAZE", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "154190.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827960143", + "time": "2025-12-04 13:59:20.143", + "valueExplanation": "ROI_04", + "pre_value": "0.0", + "pre_valueExplanation": "NO_GAZE", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "154395.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827962193", + "time": "2025-12-04 13:59:22.193", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "154465.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827962893", + "time": "2025-12-04 13:59:22.893", + "valueExplanation": "ROI_04", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "154835.0", + "mileage": "125.1", + "value": "13.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:01.771", + "version": "v1.0", + "ts": "1764827966593", + "time": "2025-12-04 13:59:26.593", + "valueExplanation": "ROI_13", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155030.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:01.771", + "version": "v1.0", + "ts": "1764827968543", + "time": "2025-12-04 13:59:28.543", + "valueExplanation": "ROI_07", + "pre_value": "13.0", + "pre_valueExplanation": "ROI_13", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155315.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:01.771", + "version": "v1.0", + "ts": "1764827971393", + "time": "2025-12-04 13:59:31.393", + "valueExplanation": "ROI_04", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155370.0", + "mileage": "125.1", + "value": "13.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:01.771", + "version": "v1.0", + "ts": "1764827971943", + "time": "2025-12-04 13:59:31.943", + "valueExplanation": "ROI_13", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155670.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:01.771", + "version": "v1.0", + "ts": "1764827974943", + "time": "2025-12-04 13:59:34.943", + "valueExplanation": "ROI_04", + "pre_value": "13.0", + "pre_valueExplanation": "ROI_13", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155880.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:01.771", + "version": "v1.0", + "ts": "1764827977043", + "time": "2025-12-04 13:59:37.043", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156005.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978293", + "time": "2025-12-04 13:59:38.293", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156040.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978643", + "time": "2025-12-04 13:59:38.643", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156100.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979243", + "time": "2025-12-04 13:59:39.243", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156230.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827980543", + "time": "2025-12-04 13:59:40.543", + "valueExplanation": "ROI_01", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157365.0", + "mileage": "125.1", + "value": "4.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991893", + "time": "2025-12-04 13:59:51.893", + "valueExplanation": "ROI_04", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157925.0", + "mileage": "125.1", + "value": "7.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997493", + "time": "2025-12-04 13:59:57.493", + "valueExplanation": "ROI_07", + "pre_value": "4.0", + "pre_valueExplanation": "ROI_04", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157970.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997943", + "time": "2025-12-04 13:59:57.943", + "valueExplanation": "ROI_01", + "pre_value": "7.0", + "pre_valueExplanation": "ROI_07", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158050.0", + "mileage": "125.1", + "value": "20.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998743", + "time": "2025-12-04 13:59:58.743", + "valueExplanation": "ROI_20", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158105.0", + "mileage": "125.1", + "value": "1.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764827999293", + "time": "2025-12-04 13:59:59.293", + "valueExplanation": "ROI_01", + "pre_value": "20.0", + "pre_valueExplanation": "ROI_20", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158500.0", + "mileage": "125.1", + "value": "0.0", + "signal": "MPIC_D_Gaze_ROI_Idx", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828003243", + "time": "2025-12-04 14:00:03.243", + "valueExplanation": "NO_GAZE", + "pre_value": "1.0", + "pre_valueExplanation": "ROI_01", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146555.0", + "mileage": "124.6", + "value": "4.0", + "signal": "L2P_Function_State", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827883793", + "time": "2025-12-04 13:58:03.793", + "valueExplanation": "kOverrule", + "pre_value": "3.0", + "pre_valueExplanation": "kActive", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146910.0", + "mileage": "124.7", + "value": "5.0", + "signal": "L2P_Function_State", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887343", + "time": "2025-12-04 13:58:07.343", + "valueExplanation": "kError", + "pre_value": "4.0", + "pre_valueExplanation": "kOverrule", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148265.0", + "mileage": "125.0", + "value": "1.0", + "signal": "BrkPdl_Stat", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827900893", + "time": "2025-12-04 13:58:20.893", + "valueExplanation": "Pedal pressed", + "pre_value": "0.0", + "pre_valueExplanation": "Pedal upstopped", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "150155.0", + "mileage": "125.1", + "value": "0.0", + "signal": "BrkPdl_Stat", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827919793", + "time": "2025-12-04 13:58:39.793", + "valueExplanation": "Pedal upstopped", + "pre_value": "1.0", + "pre_valueExplanation": "Pedal pressed", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "155900.0", + "mileage": "125.1", + "value": "1.0", + "signal": "BrkPdl_Stat", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:01.771", + "version": "v1.0", + "ts": "1764827977243", + "time": "2025-12-04 13:59:37.243", + "valueExplanation": "Pedal pressed", + "pre_value": "0.0", + "pre_valueExplanation": "Pedal upstopped", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156045.0", + "mileage": "125.1", + "value": "0.0", + "signal": "BrkPdl_Stat", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827978693", + "time": "2025-12-04 13:59:38.693", + "valueExplanation": "Pedal upstopped", + "pre_value": "1.0", + "pre_valueExplanation": "Pedal pressed", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156445.0", + "mileage": "125.1", + "value": "1.0", + "signal": "BrkPdl_Stat", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827982693", + "time": "2025-12-04 13:59:42.693", + "valueExplanation": "Pedal pressed", + "pre_value": "0.0", + "pre_valueExplanation": "Pedal upstopped", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157285.0", + "mileage": "125.1", + "value": "0.0", + "signal": "BrkPdl_Stat", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991093", + "time": "2025-12-04 13:59:51.093", + "valueExplanation": "Pedal upstopped", + "pre_value": "1.0", + "pre_valueExplanation": "Pedal pressed", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157665.0", + "mileage": "125.1", + "value": "1.0", + "signal": "BrkPdl_Stat", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994893", + "time": "2025-12-04 13:59:54.893", + "valueExplanation": "Pedal pressed", + "pre_value": "0.0", + "pre_valueExplanation": "Pedal upstopped", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158595.0", + "mileage": "125.1", + "value": "0.0", + "signal": "BrkPdl_Stat", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828004193", + "time": "2025-12-04 14:00:04.193", + "valueExplanation": "Pedal upstopped", + "pre_value": "1.0", + "pre_valueExplanation": "Pedal pressed", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131650.0", + "mileage": "121.1", + "value": "3.0", + "signal": "DAS_DTR_UI_Stat_ST3", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827734743", + "time": "2025-12-04 13:55:34.743", + "valueExplanation": "ACTV_SPEED_LMT_CNTRL", + "pre_value": "2.0", + "pre_valueExplanation": "ACTV_SET_SPEED_CNTRL", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132160.0", + "mileage": "121.2", + "value": "2.0", + "signal": "DAS_DTR_UI_Stat_ST3", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827739843", + "time": "2025-12-04 13:55:39.843", + "valueExplanation": "ACTV_SET_SPEED_CNTRL", + "pre_value": "3.0", + "pre_valueExplanation": "ACTV_SPEED_LMT_CNTRL", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141160.0", + "mileage": "123.1", + "value": "3.0", + "signal": "DAS_DTR_UI_Stat_ST3", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827829843", + "time": "2025-12-04 13:57:09.843", + "valueExplanation": "ACTV_SPEED_LMT_CNTRL", + "pre_value": "2.0", + "pre_valueExplanation": "ACTV_SET_SPEED_CNTRL", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141670.0", + "mileage": "123.3", + "value": "2.0", + "signal": "DAS_DTR_UI_Stat_ST3", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827834943", + "time": "2025-12-04 13:57:14.943", + "valueExplanation": "ACTV_SET_SPEED_CNTRL", + "pre_value": "3.0", + "pre_valueExplanation": "ACTV_SPEED_LMT_CNTRL", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146920.0", + "mileage": "124.7", + "value": "1.0", + "signal": "DAS_DTR_UI_Stat_ST3", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887443", + "time": "2025-12-04 13:58:07.443", + "valueExplanation": "PRESEL", + "pre_value": "2.0", + "pre_valueExplanation": "ACTV_SET_SPEED_CNTRL", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146960.0", + "mileage": "124.7", + "value": "14.0", + "signal": "DAS_DTR_UI_Stat_ST3", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887843", + "time": "2025-12-04 13:58:07.843", + "valueExplanation": "ERROR", + "pre_value": "1.0", + "pre_valueExplanation": "PRESEL", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158525.0", + "mileage": "125.1", + "value": "0.0", + "signal": "DAS_DTR_UI_Stat_ST3", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828003493", + "time": "2025-12-04 14:00:03.493", + "valueExplanation": "OFF", + "pre_value": "14.0", + "pre_valueExplanation": "ERROR", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158565.0", + "mileage": "125.1", + "value": "14.0", + "signal": "DAS_DTR_UI_Stat_ST3", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828003893", + "time": "2025-12-04 14:00:03.893", + "valueExplanation": "ERROR", + "pre_value": "0.0", + "pre_valueExplanation": "OFF", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146550.0", + "mileage": "124.6", + "value": "2.0", + "signal": "MM_CtrlLoopState", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827883743", + "time": "2025-12-04 13:58:03.743", + "valueExplanation": "Blending", + "pre_value": "3.0", + "pre_valueExplanation": "Closed_Loop", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146565.0", + "mileage": "124.6", + "value": "1.0", + "signal": "MM_CtrlLoopState", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827883893", + "time": "2025-12-04 13:58:03.893", + "valueExplanation": "Open_Loop", + "pre_value": "2.0", + "pre_valueExplanation": "Blending", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146960.0", + "mileage": "124.7", + "value": "0.0", + "signal": "MM_CtrlLoopState", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887843", + "time": "2025-12-04 13:58:07.843", + "valueExplanation": "Unknown", + "pre_value": "1.0", + "pre_valueExplanation": "Open_Loop", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156125.0", + "mileage": "125.1", + "value": "1.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979493", + "time": "2025-12-04 13:59:39.493", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156135.0", + "mileage": "125.1", + "value": "0.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:04.821", + "version": "v1.0", + "ts": "1764827979593", + "time": "2025-12-04 13:59:39.593", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156350.0", + "mileage": "125.1", + "value": "1.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981743", + "time": "2025-12-04 13:59:41.743", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "156365.0", + "mileage": "125.1", + "value": "0.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:09.47", + "version": "v1.0", + "ts": "1764827981893", + "time": "2025-12-04 13:59:41.893", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157290.0", + "mileage": "125.1", + "value": "3.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991143", + "time": "2025-12-04 13:59:51.143", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157295.0", + "mileage": "125.1", + "value": "9.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991193", + "time": "2025-12-04 13:59:51.193", + "valueExplanation": "", + "pre_value": "3.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157300.0", + "mileage": "125.1", + "value": "11.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991243", + "time": "2025-12-04 13:59:51.243", + "valueExplanation": "", + "pre_value": "9.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157305.0", + "mileage": "125.1", + "value": "12.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991293", + "time": "2025-12-04 13:59:51.293", + "valueExplanation": "", + "pre_value": "11.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157345.0", + "mileage": "125.1", + "value": "11.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991693", + "time": "2025-12-04 13:59:51.693", + "valueExplanation": "", + "pre_value": "12.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157350.0", + "mileage": "125.1", + "value": "10.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991743", + "time": "2025-12-04 13:59:51.743", + "valueExplanation": "", + "pre_value": "11.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157355.0", + "mileage": "125.1", + "value": "4.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991793", + "time": "2025-12-04 13:59:51.793", + "valueExplanation": "", + "pre_value": "10.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157360.0", + "mileage": "125.1", + "value": "0.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991843", + "time": "2025-12-04 13:59:51.843", + "valueExplanation": "", + "pre_value": "4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157485.0", + "mileage": "125.1", + "value": "1.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993093", + "time": "2025-12-04 13:59:53.093", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157490.0", + "mileage": "125.1", + "value": "2.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993143", + "time": "2025-12-04 13:59:53.143", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157495.0", + "mileage": "125.1", + "value": "5.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993193", + "time": "2025-12-04 13:59:53.193", + "valueExplanation": "", + "pre_value": "2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157500.0", + "mileage": "125.1", + "value": "6.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993243", + "time": "2025-12-04 13:59:53.243", + "valueExplanation": "", + "pre_value": "5.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157540.0", + "mileage": "125.1", + "value": "7.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827993643", + "time": "2025-12-04 13:59:53.643", + "valueExplanation": "", + "pre_value": "6.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157645.0", + "mileage": "125.1", + "value": "6.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994693", + "time": "2025-12-04 13:59:54.693", + "valueExplanation": "", + "pre_value": "7.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157655.0", + "mileage": "125.1", + "value": "4.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994793", + "time": "2025-12-04 13:59:54.793", + "valueExplanation": "", + "pre_value": "6.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157660.0", + "mileage": "125.1", + "value": "1.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994843", + "time": "2025-12-04 13:59:54.843", + "valueExplanation": "", + "pre_value": "4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157665.0", + "mileage": "125.1", + "value": "0.0", + "signal": "PT4_PTCoor_AccelPdlPosn_D_Raw", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994893", + "time": "2025-12-04 13:59:54.893", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146910.0", + "mileage": "124.7", + "value": "10.0", + "signal": "AEB_state", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887343", + "time": "2025-12-04 13:58:07.343", + "valueExplanation": "kError", + "pre_value": "1.0", + "pre_valueExplanation": "kAvailable", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146920.0", + "mileage": "124.7", + "value": "1.0", + "signal": "DAS_DTQ_UI_Stat_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887443", + "time": "2025-12-04 13:58:07.443", + "valueExplanation": "PRESELECTED", + "pre_value": "3.0", + "pre_valueExplanation": "ACTV", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146960.0", + "mileage": "124.7", + "value": "14.0", + "signal": "DAS_DTQ_UI_Stat_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887843", + "time": "2025-12-04 13:58:07.843", + "valueExplanation": "ERR", + "pre_value": "1.0", + "pre_valueExplanation": "PRESELECTED", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158525.0", + "mileage": "125.1", + "value": "0.0", + "signal": "DAS_DTQ_UI_Stat_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828003493", + "time": "2025-12-04 14:00:03.493", + "valueExplanation": "OFF", + "pre_value": "14.0", + "pre_valueExplanation": "ERR", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158565.0", + "mileage": "125.1", + "value": "14.0", + "signal": "DAS_DTQ_UI_Stat_ST35", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:01:14.89", + "version": "v1.0", + "ts": "1764828003893", + "time": "2025-12-04 14:00:03.893", + "valueExplanation": "ERR", + "pre_value": "0.0", + "pre_valueExplanation": "OFF", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146910.0", + "mileage": "124.7", + "value": "6.0", + "signal": "MMT_L2PP_Function_State", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887343", + "time": "2025-12-04 13:58:07.343", + "valueExplanation": "Unknown", + "pre_value": "1.0", + "pre_valueExplanation": "Deactivated", + "is_pre_value_needed": "1" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146920.0", + "mileage": "124.7", + "value": "6.0", + "signal": "L2P_Deactivation_Reason", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887443", + "time": "2025-12-04 13:58:07.443", + "valueExplanation": "kError", + "pre_value": "", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147120.0", + "mileage": "124.7", + "value": "0.0", + "signal": "L2P_Deactivation_Reason", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827889443", + "time": "2025-12-04 13:58:09.443", + "valueExplanation": "kIdle", + "pre_value": "6.0", + "pre_valueExplanation": "kError", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "130515.0", + "mileage": "120.8", + "value": "0.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827723393", + "time": "2025-12-04 13:55:23.393", + "valueExplanation": "IDLE", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "130865.0", + "mileage": "120.9", + "value": "1.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827726893", + "time": "2025-12-04 13:55:26.893", + "valueExplanation": "NOT_ON_ROAD", + "pre_value": "0.0", + "pre_valueExplanation": "IDLE", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132070.0", + "mileage": "121.2", + "value": "0.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827738943", + "time": "2025-12-04 13:55:38.943", + "valueExplanation": "IDLE", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132910.0", + "mileage": "121.4", + "value": "1.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827747343", + "time": "2025-12-04 13:55:47.343", + "valueExplanation": "NOT_ON_ROAD", + "pre_value": "0.0", + "pre_valueExplanation": "IDLE", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "133295.0", + "mileage": "121.5", + "value": "0.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827751193", + "time": "2025-12-04 13:55:51.193", + "valueExplanation": "IDLE", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "137730.0", + "mileage": "122.4", + "value": "1.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827795543", + "time": "2025-12-04 13:56:35.543", + "valueExplanation": "NOT_ON_ROAD", + "pre_value": "0.0", + "pre_valueExplanation": "IDLE", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "138025.0", + "mileage": "122.5", + "value": "0.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827798493", + "time": "2025-12-04 13:56:38.493", + "valueExplanation": "IDLE", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "138235.0", + "mileage": "122.5", + "value": "1.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827800593", + "time": "2025-12-04 13:56:40.593", + "valueExplanation": "NOT_ON_ROAD", + "pre_value": "0.0", + "pre_valueExplanation": "IDLE", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "138815.0", + "mileage": "122.6", + "value": "3.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827806393", + "time": "2025-12-04 13:56:46.393", + "valueExplanation": "MCRSLP_DSTRCT", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139900.0", + "mileage": "122.9", + "value": "0.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827817243", + "time": "2025-12-04 13:56:57.243", + "valueExplanation": "IDLE", + "pre_value": "3.0", + "pre_valueExplanation": "MCRSLP_DSTRCT", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "139950.0", + "mileage": "122.9", + "value": "1.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827817743", + "time": "2025-12-04 13:56:57.743", + "valueExplanation": "NOT_ON_ROAD", + "pre_value": "0.0", + "pre_valueExplanation": "IDLE", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140340.0", + "mileage": "123.0", + "value": "0.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827821643", + "time": "2025-12-04 13:57:01.643", + "valueExplanation": "IDLE", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140815.0", + "mileage": "123.1", + "value": "1.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827826393", + "time": "2025-12-04 13:57:06.393", + "valueExplanation": "NOT_ON_ROAD", + "pre_value": "0.0", + "pre_valueExplanation": "IDLE", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "140965.0", + "mileage": "123.1", + "value": "3.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827827893", + "time": "2025-12-04 13:57:07.893", + "valueExplanation": "MCRSLP_DSTRCT", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "142060.0", + "mileage": "123.4", + "value": "0.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827838843", + "time": "2025-12-04 13:57:18.843", + "valueExplanation": "IDLE", + "pre_value": "3.0", + "pre_valueExplanation": "MCRSLP_DSTRCT", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "143840.0", + "mileage": "123.8", + "value": "1.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827856643", + "time": "2025-12-04 13:57:36.643", + "valueExplanation": "NOT_ON_ROAD", + "pre_value": "0.0", + "pre_valueExplanation": "IDLE", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "144295.0", + "mileage": "124.0", + "value": "0.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827861193", + "time": "2025-12-04 13:57:41.193", + "valueExplanation": "IDLE", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "144380.0", + "mileage": "124.0", + "value": "1.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827862043", + "time": "2025-12-04 13:57:42.043", + "valueExplanation": "NOT_ON_ROAD", + "pre_value": "0.0", + "pre_valueExplanation": "IDLE", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "145035.0", + "mileage": "124.2", + "value": "0.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827868593", + "time": "2025-12-04 13:57:48.593", + "valueExplanation": "IDLE", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "145615.0", + "mileage": "124.3", + "value": "1.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827874393", + "time": "2025-12-04 13:57:54.393", + "valueExplanation": "NOT_ON_ROAD", + "pre_value": "0.0", + "pre_valueExplanation": "IDLE", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "145755.0", + "mileage": "124.4", + "value": "3.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827875793", + "time": "2025-12-04 13:57:55.793", + "valueExplanation": "MCRSLP_DSTRCT", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146470.0", + "mileage": "124.6", + "value": "1.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827882943", + "time": "2025-12-04 13:58:02.943", + "valueExplanation": "NOT_ON_ROAD", + "pre_value": "3.0", + "pre_valueExplanation": "MCRSLP_DSTRCT", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146625.0", + "mileage": "124.6", + "value": "3.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827884493", + "time": "2025-12-04 13:58:04.493", + "valueExplanation": "MCRSLP_DSTRCT", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147590.0", + "mileage": "124.8", + "value": "0.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827894143", + "time": "2025-12-04 13:58:14.143", + "valueExplanation": "IDLE", + "pre_value": "3.0", + "pre_valueExplanation": "MCRSLP_DSTRCT", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148065.0", + "mileage": "125.0", + "value": "1.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827898893", + "time": "2025-12-04 13:58:18.893", + "valueExplanation": "NOT_ON_ROAD", + "pre_value": "0.0", + "pre_valueExplanation": "IDLE", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148395.0", + "mileage": "125.0", + "value": "0.0", + "signal": "AAS_ActvAS_Rq", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827902193", + "time": "2025-12-04 13:58:22.193", + "valueExplanation": "IDLE", + "pre_value": "1.0", + "pre_valueExplanation": "NOT_ON_ROAD", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131735.0", + "mileage": "121.1", + "value": "96.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827735593", + "time": "2025-12-04 13:55:35.593", + "valueExplanation": "", + "pre_value": "97.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131790.0", + "mileage": "121.1", + "value": "95.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827736143", + "time": "2025-12-04 13:55:36.143", + "valueExplanation": "", + "pre_value": "96.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131825.0", + "mileage": "121.1", + "value": "94.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827736493", + "time": "2025-12-04 13:55:36.493", + "valueExplanation": "", + "pre_value": "95.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131860.0", + "mileage": "121.1", + "value": "93.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827736843", + "time": "2025-12-04 13:55:36.843", + "valueExplanation": "", + "pre_value": "94.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131895.0", + "mileage": "121.1", + "value": "92.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827737193", + "time": "2025-12-04 13:55:37.193", + "valueExplanation": "", + "pre_value": "93.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131930.0", + "mileage": "121.2", + "value": "91.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827737543", + "time": "2025-12-04 13:55:37.543", + "valueExplanation": "", + "pre_value": "92.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131955.0", + "mileage": "121.2", + "value": "90.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827737793", + "time": "2025-12-04 13:55:37.793", + "valueExplanation": "", + "pre_value": "91.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "131990.0", + "mileage": "121.2", + "value": "89.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827738143", + "time": "2025-12-04 13:55:38.143", + "valueExplanation": "", + "pre_value": "90.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132020.0", + "mileage": "121.2", + "value": "88.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827738443", + "time": "2025-12-04 13:55:38.443", + "valueExplanation": "", + "pre_value": "89.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132050.0", + "mileage": "121.2", + "value": "87.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827738743", + "time": "2025-12-04 13:55:38.743", + "valueExplanation": "", + "pre_value": "88.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132075.0", + "mileage": "121.2", + "value": "86.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827738993", + "time": "2025-12-04 13:55:38.993", + "valueExplanation": "", + "pre_value": "87.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132105.0", + "mileage": "121.2", + "value": "85.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827739293", + "time": "2025-12-04 13:55:39.293", + "valueExplanation": "", + "pre_value": "86.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132135.0", + "mileage": "121.2", + "value": "84.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:03.061", + "version": "v1.0", + "ts": "1764827739593", + "time": "2025-12-04 13:55:39.593", + "valueExplanation": "", + "pre_value": "85.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132165.0", + "mileage": "121.2", + "value": "83.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827739893", + "time": "2025-12-04 13:55:39.893", + "valueExplanation": "", + "pre_value": "84.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132195.0", + "mileage": "121.2", + "value": "82.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827740193", + "time": "2025-12-04 13:55:40.193", + "valueExplanation": "", + "pre_value": "83.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132230.0", + "mileage": "121.2", + "value": "81.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827740543", + "time": "2025-12-04 13:55:40.543", + "valueExplanation": "", + "pre_value": "82.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132265.0", + "mileage": "121.2", + "value": "80.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827740893", + "time": "2025-12-04 13:55:40.893", + "valueExplanation": "", + "pre_value": "81.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132305.0", + "mileage": "121.2", + "value": "79.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827741293", + "time": "2025-12-04 13:55:41.293", + "valueExplanation": "", + "pre_value": "80.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132350.0", + "mileage": "121.3", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827741743", + "time": "2025-12-04 13:55:41.743", + "valueExplanation": "", + "pre_value": "79.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132410.0", + "mileage": "121.3", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827742343", + "time": "2025-12-04 13:55:42.343", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132555.0", + "mileage": "121.3", + "value": "76.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827743793", + "time": "2025-12-04 13:55:43.793", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132655.0", + "mileage": "121.3", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827744793", + "time": "2025-12-04 13:55:44.793", + "valueExplanation": "", + "pre_value": "76.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "132915.0", + "mileage": "121.4", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827747393", + "time": "2025-12-04 13:55:47.393", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "133200.0", + "mileage": "121.4", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827750243", + "time": "2025-12-04 13:55:50.243", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "133205.0", + "mileage": "121.4", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827750293", + "time": "2025-12-04 13:55:50.293", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "133210.0", + "mileage": "121.4", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827750343", + "time": "2025-12-04 13:55:50.343", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135385.0", + "mileage": "121.9", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772093", + "time": "2025-12-04 13:56:12.093", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135390.0", + "mileage": "121.9", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772143", + "time": "2025-12-04 13:56:12.143", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135395.0", + "mileage": "121.9", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772193", + "time": "2025-12-04 13:56:12.193", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135400.0", + "mileage": "121.9", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772243", + "time": "2025-12-04 13:56:12.243", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135415.0", + "mileage": "121.9", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772393", + "time": "2025-12-04 13:56:12.393", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135420.0", + "mileage": "121.9", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772443", + "time": "2025-12-04 13:56:12.443", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135425.0", + "mileage": "121.9", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772493", + "time": "2025-12-04 13:56:12.493", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135430.0", + "mileage": "121.9", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772543", + "time": "2025-12-04 13:56:12.543", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135445.0", + "mileage": "121.9", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772693", + "time": "2025-12-04 13:56:12.693", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135455.0", + "mileage": "121.9", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772793", + "time": "2025-12-04 13:56:12.793", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135460.0", + "mileage": "121.9", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772843", + "time": "2025-12-04 13:56:12.843", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135465.0", + "mileage": "121.9", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772893", + "time": "2025-12-04 13:56:12.893", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135470.0", + "mileage": "121.9", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772943", + "time": "2025-12-04 13:56:12.943", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135475.0", + "mileage": "121.9", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827772993", + "time": "2025-12-04 13:56:12.993", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135510.0", + "mileage": "121.9", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827773343", + "time": "2025-12-04 13:56:13.343", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135540.0", + "mileage": "121.9", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827773643", + "time": "2025-12-04 13:56:13.643", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135545.0", + "mileage": "121.9", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827773693", + "time": "2025-12-04 13:56:13.693", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135550.0", + "mileage": "121.9", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827773743", + "time": "2025-12-04 13:56:13.743", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135565.0", + "mileage": "121.9", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827773893", + "time": "2025-12-04 13:56:13.893", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135570.0", + "mileage": "121.9", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827773943", + "time": "2025-12-04 13:56:13.943", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135620.0", + "mileage": "122.0", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827774443", + "time": "2025-12-04 13:56:14.443", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135625.0", + "mileage": "122.0", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827774493", + "time": "2025-12-04 13:56:14.493", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135715.0", + "mileage": "122.0", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827775393", + "time": "2025-12-04 13:56:15.393", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "135720.0", + "mileage": "122.0", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827775443", + "time": "2025-12-04 13:56:15.443", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136925.0", + "mileage": "122.2", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827787493", + "time": "2025-12-04 13:56:27.493", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136930.0", + "mileage": "122.2", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827787543", + "time": "2025-12-04 13:56:27.543", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136935.0", + "mileage": "122.2", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827787593", + "time": "2025-12-04 13:56:27.593", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136955.0", + "mileage": "122.2", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827787793", + "time": "2025-12-04 13:56:27.793", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136960.0", + "mileage": "122.2", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827787843", + "time": "2025-12-04 13:56:27.843", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136965.0", + "mileage": "122.2", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827787893", + "time": "2025-12-04 13:56:27.893", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136970.0", + "mileage": "122.2", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827787943", + "time": "2025-12-04 13:56:27.943", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136975.0", + "mileage": "122.2", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827787993", + "time": "2025-12-04 13:56:27.993", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136980.0", + "mileage": "122.3", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827788043", + "time": "2025-12-04 13:56:28.043", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136985.0", + "mileage": "122.3", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827788093", + "time": "2025-12-04 13:56:28.093", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "136990.0", + "mileage": "122.3", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827788143", + "time": "2025-12-04 13:56:28.143", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "137000.0", + "mileage": "122.3", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827788243", + "time": "2025-12-04 13:56:28.243", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "137030.0", + "mileage": "122.3", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827788543", + "time": "2025-12-04 13:56:28.543", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_32a9a653-c194-4e30-8f8c-605c5453c608.ulf", + "cycle": "137165.0", + "mileage": "122.3", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:56:59.141", + "version": "v1.0", + "ts": "1764827789893", + "time": "2025-12-04 13:56:29.893", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141210.0", + "mileage": "123.2", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827830343", + "time": "2025-12-04 13:57:10.343", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141260.0", + "mileage": "123.2", + "value": "79.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827830843", + "time": "2025-12-04 13:57:10.843", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141290.0", + "mileage": "123.2", + "value": "80.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827831143", + "time": "2025-12-04 13:57:11.143", + "valueExplanation": "", + "pre_value": "79.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141320.0", + "mileage": "123.2", + "value": "81.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827831443", + "time": "2025-12-04 13:57:11.443", + "valueExplanation": "", + "pre_value": "80.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141350.0", + "mileage": "123.2", + "value": "82.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827831743", + "time": "2025-12-04 13:57:11.743", + "valueExplanation": "", + "pre_value": "81.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141375.0", + "mileage": "123.2", + "value": "83.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827831993", + "time": "2025-12-04 13:57:11.993", + "valueExplanation": "", + "pre_value": "82.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141400.0", + "mileage": "123.2", + "value": "84.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827832243", + "time": "2025-12-04 13:57:12.243", + "valueExplanation": "", + "pre_value": "83.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141425.0", + "mileage": "123.2", + "value": "85.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827832493", + "time": "2025-12-04 13:57:12.493", + "valueExplanation": "", + "pre_value": "84.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141450.0", + "mileage": "123.2", + "value": "86.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827832743", + "time": "2025-12-04 13:57:12.743", + "valueExplanation": "", + "pre_value": "85.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141470.0", + "mileage": "123.2", + "value": "87.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827832943", + "time": "2025-12-04 13:57:12.943", + "valueExplanation": "", + "pre_value": "86.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141490.0", + "mileage": "123.2", + "value": "88.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827833143", + "time": "2025-12-04 13:57:13.143", + "valueExplanation": "", + "pre_value": "87.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141515.0", + "mileage": "123.2", + "value": "89.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827833393", + "time": "2025-12-04 13:57:13.393", + "valueExplanation": "", + "pre_value": "88.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141540.0", + "mileage": "123.2", + "value": "90.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827833643", + "time": "2025-12-04 13:57:13.643", + "valueExplanation": "", + "pre_value": "89.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141560.0", + "mileage": "123.2", + "value": "91.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827833843", + "time": "2025-12-04 13:57:13.843", + "valueExplanation": "", + "pre_value": "90.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141590.0", + "mileage": "123.2", + "value": "92.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827834143", + "time": "2025-12-04 13:57:14.143", + "valueExplanation": "", + "pre_value": "91.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141615.0", + "mileage": "123.2", + "value": "93.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827834393", + "time": "2025-12-04 13:57:14.393", + "valueExplanation": "", + "pre_value": "92.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141645.0", + "mileage": "123.3", + "value": "94.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827834693", + "time": "2025-12-04 13:57:14.693", + "valueExplanation": "", + "pre_value": "93.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141680.0", + "mileage": "123.3", + "value": "95.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827835043", + "time": "2025-12-04 13:57:15.043", + "valueExplanation": "", + "pre_value": "94.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141720.0", + "mileage": "123.3", + "value": "96.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827835443", + "time": "2025-12-04 13:57:15.443", + "valueExplanation": "", + "pre_value": "95.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "141780.0", + "mileage": "123.3", + "value": "97.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:57:45.32", + "version": "v1.0", + "ts": "1764827836043", + "time": "2025-12-04 13:57:16.043", + "valueExplanation": "", + "pre_value": "96.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146555.0", + "mileage": "124.6", + "value": "96.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827883793", + "time": "2025-12-04 13:58:03.793", + "valueExplanation": "", + "pre_value": "97.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146580.0", + "mileage": "124.6", + "value": "97.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827884043", + "time": "2025-12-04 13:58:04.043", + "valueExplanation": "", + "pre_value": "96.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146855.0", + "mileage": "124.7", + "value": "98.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827886793", + "time": "2025-12-04 13:58:06.793", + "valueExplanation": "", + "pre_value": "97.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146915.0", + "mileage": "124.7", + "value": "97.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887393", + "time": "2025-12-04 13:58:07.393", + "valueExplanation": "", + "pre_value": "98.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146920.0", + "mileage": "124.7", + "value": "98.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887443", + "time": "2025-12-04 13:58:07.443", + "valueExplanation": "", + "pre_value": "97.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146925.0", + "mileage": "124.7", + "value": "97.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827887493", + "time": "2025-12-04 13:58:07.493", + "valueExplanation": "", + "pre_value": "98.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "146995.0", + "mileage": "124.7", + "value": "96.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827888193", + "time": "2025-12-04 13:58:08.193", + "valueExplanation": "", + "pre_value": "97.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147000.0", + "mileage": "124.7", + "value": "97.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:32.421", + "version": "v1.0", + "ts": "1764827888243", + "time": "2025-12-04 13:58:08.243", + "valueExplanation": "", + "pre_value": "96.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147010.0", + "mileage": "124.7", + "value": "96.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827888343", + "time": "2025-12-04 13:58:08.343", + "valueExplanation": "", + "pre_value": "97.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147055.0", + "mileage": "124.7", + "value": "95.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827888793", + "time": "2025-12-04 13:58:08.793", + "valueExplanation": "", + "pre_value": "96.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147120.0", + "mileage": "124.7", + "value": "94.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827889443", + "time": "2025-12-04 13:58:09.443", + "valueExplanation": "", + "pre_value": "95.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147185.0", + "mileage": "124.7", + "value": "93.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827890093", + "time": "2025-12-04 13:58:10.093", + "valueExplanation": "", + "pre_value": "94.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147255.0", + "mileage": "124.8", + "value": "92.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827890793", + "time": "2025-12-04 13:58:10.793", + "valueExplanation": "", + "pre_value": "93.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147325.0", + "mileage": "124.8", + "value": "91.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827891493", + "time": "2025-12-04 13:58:11.493", + "valueExplanation": "", + "pre_value": "92.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147405.0", + "mileage": "124.8", + "value": "90.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827892293", + "time": "2025-12-04 13:58:12.293", + "valueExplanation": "", + "pre_value": "91.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147475.0", + "mileage": "124.8", + "value": "89.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827892993", + "time": "2025-12-04 13:58:12.993", + "valueExplanation": "", + "pre_value": "90.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147560.0", + "mileage": "124.8", + "value": "88.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827893843", + "time": "2025-12-04 13:58:13.843", + "valueExplanation": "", + "pre_value": "89.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147635.0", + "mileage": "124.9", + "value": "87.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827894593", + "time": "2025-12-04 13:58:14.593", + "valueExplanation": "", + "pre_value": "88.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147705.0", + "mileage": "124.9", + "value": "86.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827895293", + "time": "2025-12-04 13:58:15.293", + "valueExplanation": "", + "pre_value": "87.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147780.0", + "mileage": "124.9", + "value": "85.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827896043", + "time": "2025-12-04 13:58:16.043", + "valueExplanation": "", + "pre_value": "86.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147865.0", + "mileage": "124.9", + "value": "84.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827896893", + "time": "2025-12-04 13:58:16.893", + "valueExplanation": "", + "pre_value": "85.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "147940.0", + "mileage": "124.9", + "value": "83.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827897643", + "time": "2025-12-04 13:58:17.643", + "valueExplanation": "", + "pre_value": "84.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148015.0", + "mileage": "124.9", + "value": "82.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827898393", + "time": "2025-12-04 13:58:18.393", + "valueExplanation": "", + "pre_value": "83.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148095.0", + "mileage": "125.0", + "value": "81.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827899193", + "time": "2025-12-04 13:58:19.193", + "valueExplanation": "", + "pre_value": "82.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148175.0", + "mileage": "125.0", + "value": "80.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827899993", + "time": "2025-12-04 13:58:19.993", + "valueExplanation": "", + "pre_value": "81.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148245.0", + "mileage": "125.0", + "value": "79.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827900693", + "time": "2025-12-04 13:58:20.693", + "valueExplanation": "", + "pre_value": "80.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148310.0", + "mileage": "125.0", + "value": "78.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827901343", + "time": "2025-12-04 13:58:21.343", + "valueExplanation": "", + "pre_value": "79.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148345.0", + "mileage": "125.0", + "value": "77.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827901693", + "time": "2025-12-04 13:58:21.693", + "valueExplanation": "", + "pre_value": "78.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148375.0", + "mileage": "125.0", + "value": "76.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827901993", + "time": "2025-12-04 13:58:21.993", + "valueExplanation": "", + "pre_value": "77.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148395.0", + "mileage": "125.0", + "value": "75.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827902193", + "time": "2025-12-04 13:58:22.193", + "valueExplanation": "", + "pre_value": "76.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148410.0", + "mileage": "125.0", + "value": "74.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827902343", + "time": "2025-12-04 13:58:22.343", + "valueExplanation": "", + "pre_value": "75.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148425.0", + "mileage": "125.0", + "value": "73.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827902493", + "time": "2025-12-04 13:58:22.493", + "valueExplanation": "", + "pre_value": "74.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148435.0", + "mileage": "125.0", + "value": "72.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827902593", + "time": "2025-12-04 13:58:22.593", + "valueExplanation": "", + "pre_value": "73.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148450.0", + "mileage": "125.0", + "value": "71.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827902743", + "time": "2025-12-04 13:58:22.743", + "valueExplanation": "", + "pre_value": "72.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148465.0", + "mileage": "125.0", + "value": "70.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:47.12", + "version": "v1.0", + "ts": "1764827902893", + "time": "2025-12-04 13:58:22.893", + "valueExplanation": "", + "pre_value": "71.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148475.0", + "mileage": "125.0", + "value": "69.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827902993", + "time": "2025-12-04 13:58:22.993", + "valueExplanation": "", + "pre_value": "70.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148485.0", + "mileage": "125.0", + "value": "68.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903093", + "time": "2025-12-04 13:58:23.093", + "valueExplanation": "", + "pre_value": "69.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148495.0", + "mileage": "125.1", + "value": "67.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903193", + "time": "2025-12-04 13:58:23.193", + "valueExplanation": "", + "pre_value": "68.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148510.0", + "mileage": "125.1", + "value": "66.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903343", + "time": "2025-12-04 13:58:23.343", + "valueExplanation": "", + "pre_value": "67.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148520.0", + "mileage": "125.1", + "value": "65.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903443", + "time": "2025-12-04 13:58:23.443", + "valueExplanation": "", + "pre_value": "66.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148530.0", + "mileage": "125.1", + "value": "64.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903543", + "time": "2025-12-04 13:58:23.543", + "valueExplanation": "", + "pre_value": "65.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148540.0", + "mileage": "125.1", + "value": "63.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903643", + "time": "2025-12-04 13:58:23.643", + "valueExplanation": "", + "pre_value": "64.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148550.0", + "mileage": "125.1", + "value": "62.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903743", + "time": "2025-12-04 13:58:23.743", + "valueExplanation": "", + "pre_value": "63.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148555.0", + "mileage": "125.1", + "value": "61.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903793", + "time": "2025-12-04 13:58:23.793", + "valueExplanation": "", + "pre_value": "62.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148565.0", + "mileage": "125.1", + "value": "60.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903893", + "time": "2025-12-04 13:58:23.893", + "valueExplanation": "", + "pre_value": "61.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148575.0", + "mileage": "125.1", + "value": "59.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827903993", + "time": "2025-12-04 13:58:23.993", + "valueExplanation": "", + "pre_value": "60.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148585.0", + "mileage": "125.1", + "value": "58.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904093", + "time": "2025-12-04 13:58:24.093", + "valueExplanation": "", + "pre_value": "59.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148595.0", + "mileage": "125.1", + "value": "57.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904193", + "time": "2025-12-04 13:58:24.193", + "valueExplanation": "", + "pre_value": "58.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148605.0", + "mileage": "125.1", + "value": "56.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904293", + "time": "2025-12-04 13:58:24.293", + "valueExplanation": "", + "pre_value": "57.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148615.0", + "mileage": "125.1", + "value": "55.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904393", + "time": "2025-12-04 13:58:24.393", + "valueExplanation": "", + "pre_value": "56.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148625.0", + "mileage": "125.1", + "value": "54.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904493", + "time": "2025-12-04 13:58:24.493", + "valueExplanation": "", + "pre_value": "55.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148635.0", + "mileage": "125.1", + "value": "53.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904593", + "time": "2025-12-04 13:58:24.593", + "valueExplanation": "", + "pre_value": "54.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148645.0", + "mileage": "125.1", + "value": "52.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904693", + "time": "2025-12-04 13:58:24.693", + "valueExplanation": "", + "pre_value": "53.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148660.0", + "mileage": "125.1", + "value": "51.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904843", + "time": "2025-12-04 13:58:24.843", + "valueExplanation": "", + "pre_value": "52.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148670.0", + "mileage": "125.1", + "value": "50.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827904943", + "time": "2025-12-04 13:58:24.943", + "valueExplanation": "", + "pre_value": "51.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148685.0", + "mileage": "125.1", + "value": "49.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827905093", + "time": "2025-12-04 13:58:25.093", + "valueExplanation": "", + "pre_value": "50.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148700.0", + "mileage": "125.1", + "value": "48.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827905243", + "time": "2025-12-04 13:58:25.243", + "valueExplanation": "", + "pre_value": "49.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148715.0", + "mileage": "125.1", + "value": "47.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827905393", + "time": "2025-12-04 13:58:25.393", + "valueExplanation": "", + "pre_value": "48.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148725.0", + "mileage": "125.1", + "value": "46.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827905493", + "time": "2025-12-04 13:58:25.493", + "valueExplanation": "", + "pre_value": "47.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148740.0", + "mileage": "125.1", + "value": "45.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827905643", + "time": "2025-12-04 13:58:25.643", + "valueExplanation": "", + "pre_value": "46.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148755.0", + "mileage": "125.1", + "value": "44.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827905793", + "time": "2025-12-04 13:58:25.793", + "valueExplanation": "", + "pre_value": "45.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148765.0", + "mileage": "125.1", + "value": "43.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827905893", + "time": "2025-12-04 13:58:25.893", + "valueExplanation": "", + "pre_value": "44.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148780.0", + "mileage": "125.1", + "value": "42.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827906043", + "time": "2025-12-04 13:58:26.043", + "valueExplanation": "", + "pre_value": "43.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148790.0", + "mileage": "125.1", + "value": "41.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827906143", + "time": "2025-12-04 13:58:26.143", + "valueExplanation": "", + "pre_value": "42.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148805.0", + "mileage": "125.1", + "value": "40.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827906293", + "time": "2025-12-04 13:58:26.293", + "valueExplanation": "", + "pre_value": "41.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148815.0", + "mileage": "125.1", + "value": "39.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827906393", + "time": "2025-12-04 13:58:26.393", + "valueExplanation": "", + "pre_value": "40.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148830.0", + "mileage": "125.1", + "value": "38.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827906543", + "time": "2025-12-04 13:58:26.543", + "valueExplanation": "", + "pre_value": "39.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148840.0", + "mileage": "125.1", + "value": "37.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:50.821", + "version": "v1.0", + "ts": "1764827906643", + "time": "2025-12-04 13:58:26.643", + "valueExplanation": "", + "pre_value": "38.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148855.0", + "mileage": "125.1", + "value": "36.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827906793", + "time": "2025-12-04 13:58:26.793", + "valueExplanation": "", + "pre_value": "37.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148865.0", + "mileage": "125.1", + "value": "35.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827906893", + "time": "2025-12-04 13:58:26.893", + "valueExplanation": "", + "pre_value": "36.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148875.0", + "mileage": "125.1", + "value": "34.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827906993", + "time": "2025-12-04 13:58:26.993", + "valueExplanation": "", + "pre_value": "35.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148885.0", + "mileage": "125.1", + "value": "33.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907093", + "time": "2025-12-04 13:58:27.093", + "valueExplanation": "", + "pre_value": "34.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148895.0", + "mileage": "125.1", + "value": "32.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907193", + "time": "2025-12-04 13:58:27.193", + "valueExplanation": "", + "pre_value": "33.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148905.0", + "mileage": "125.1", + "value": "31.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907293", + "time": "2025-12-04 13:58:27.293", + "valueExplanation": "", + "pre_value": "32.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148915.0", + "mileage": "125.1", + "value": "30.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907393", + "time": "2025-12-04 13:58:27.393", + "valueExplanation": "", + "pre_value": "31.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148925.0", + "mileage": "125.1", + "value": "29.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907493", + "time": "2025-12-04 13:58:27.493", + "valueExplanation": "", + "pre_value": "30.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148935.0", + "mileage": "125.1", + "value": "28.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907593", + "time": "2025-12-04 13:58:27.593", + "valueExplanation": "", + "pre_value": "29.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148945.0", + "mileage": "125.1", + "value": "27.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907693", + "time": "2025-12-04 13:58:27.693", + "valueExplanation": "", + "pre_value": "28.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148955.0", + "mileage": "125.1", + "value": "26.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907793", + "time": "2025-12-04 13:58:27.793", + "valueExplanation": "", + "pre_value": "27.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148965.0", + "mileage": "125.1", + "value": "25.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907893", + "time": "2025-12-04 13:58:27.893", + "valueExplanation": "", + "pre_value": "26.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148975.0", + "mileage": "125.1", + "value": "24.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827907993", + "time": "2025-12-04 13:58:27.993", + "valueExplanation": "", + "pre_value": "25.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148985.0", + "mileage": "125.1", + "value": "23.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908093", + "time": "2025-12-04 13:58:28.093", + "valueExplanation": "", + "pre_value": "24.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "148995.0", + "mileage": "125.1", + "value": "22.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908193", + "time": "2025-12-04 13:58:28.193", + "valueExplanation": "", + "pre_value": "23.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149005.0", + "mileage": "125.1", + "value": "21.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908293", + "time": "2025-12-04 13:58:28.293", + "valueExplanation": "", + "pre_value": "22.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149010.0", + "mileage": "125.1", + "value": "20.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908343", + "time": "2025-12-04 13:58:28.343", + "valueExplanation": "", + "pre_value": "21.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149020.0", + "mileage": "125.1", + "value": "19.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908443", + "time": "2025-12-04 13:58:28.443", + "valueExplanation": "", + "pre_value": "20.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149030.0", + "mileage": "125.1", + "value": "18.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908543", + "time": "2025-12-04 13:58:28.543", + "valueExplanation": "", + "pre_value": "19.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149040.0", + "mileage": "125.1", + "value": "17.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908643", + "time": "2025-12-04 13:58:28.643", + "valueExplanation": "", + "pre_value": "18.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149050.0", + "mileage": "125.1", + "value": "16.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908743", + "time": "2025-12-04 13:58:28.743", + "valueExplanation": "", + "pre_value": "17.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149060.0", + "mileage": "125.1", + "value": "15.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908843", + "time": "2025-12-04 13:58:28.843", + "valueExplanation": "", + "pre_value": "16.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149070.0", + "mileage": "125.1", + "value": "14.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827908943", + "time": "2025-12-04 13:58:28.943", + "valueExplanation": "", + "pre_value": "15.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149080.0", + "mileage": "125.1", + "value": "13.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909043", + "time": "2025-12-04 13:58:29.043", + "valueExplanation": "", + "pre_value": "14.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149090.0", + "mileage": "125.1", + "value": "12.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909143", + "time": "2025-12-04 13:58:29.143", + "valueExplanation": "", + "pre_value": "13.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149100.0", + "mileage": "125.1", + "value": "11.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909243", + "time": "2025-12-04 13:58:29.243", + "valueExplanation": "", + "pre_value": "12.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149110.0", + "mileage": "125.1", + "value": "10.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909343", + "time": "2025-12-04 13:58:29.343", + "valueExplanation": "", + "pre_value": "11.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149120.0", + "mileage": "125.1", + "value": "9.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909443", + "time": "2025-12-04 13:58:29.443", + "valueExplanation": "", + "pre_value": "10.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149130.0", + "mileage": "125.1", + "value": "8.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909543", + "time": "2025-12-04 13:58:29.543", + "valueExplanation": "", + "pre_value": "9.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149140.0", + "mileage": "125.1", + "value": "7.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909643", + "time": "2025-12-04 13:58:29.643", + "valueExplanation": "", + "pre_value": "8.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149150.0", + "mileage": "125.1", + "value": "6.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909743", + "time": "2025-12-04 13:58:29.743", + "valueExplanation": "", + "pre_value": "7.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149165.0", + "mileage": "125.1", + "value": "5.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909893", + "time": "2025-12-04 13:58:29.893", + "valueExplanation": "", + "pre_value": "6.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149175.0", + "mileage": "125.1", + "value": "4.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827909993", + "time": "2025-12-04 13:58:29.993", + "valueExplanation": "", + "pre_value": "5.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149185.0", + "mileage": "125.1", + "value": "3.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827910093", + "time": "2025-12-04 13:58:30.093", + "valueExplanation": "", + "pre_value": "4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_633acf17-87d3-4328-97a7-662f3e62777c.ulf", + "cycle": "149200.0", + "mileage": "125.1", + "value": "2.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:58:54.421", + "version": "v1.0", + "ts": "1764827910243", + "time": "2025-12-04 13:58:30.243", + "valueExplanation": "", + "pre_value": "3.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "149215.0", + "mileage": "125.1", + "value": "1.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827910393", + "time": "2025-12-04 13:58:30.393", + "valueExplanation": "", + "pre_value": "2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "149255.0", + "mileage": "125.1", + "value": "0.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 13:59:50.171", + "version": "v1.0", + "ts": "1764827910793", + "time": "2025-12-04 13:58:30.793", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157355.0", + "mileage": "125.1", + "value": "1.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991793", + "time": "2025-12-04 13:59:51.793", + "valueExplanation": "", + "pre_value": "0.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157375.0", + "mileage": "125.1", + "value": "2.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:16.67", + "version": "v1.0", + "ts": "1764827991993", + "time": "2025-12-04 13:59:51.993", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157435.0", + "mileage": "125.1", + "value": "3.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827992593", + "time": "2025-12-04 13:59:52.593", + "valueExplanation": "", + "pre_value": "2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157580.0", + "mileage": "125.1", + "value": "4.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994043", + "time": "2025-12-04 13:59:54.043", + "valueExplanation": "", + "pre_value": "3.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157630.0", + "mileage": "125.1", + "value": "5.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827994543", + "time": "2025-12-04 13:59:54.543", + "valueExplanation": "", + "pre_value": "4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157685.0", + "mileage": "125.1", + "value": "6.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827995093", + "time": "2025-12-04 13:59:55.093", + "valueExplanation": "", + "pre_value": "5.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157775.0", + "mileage": "125.1", + "value": "5.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:21.171", + "version": "v1.0", + "ts": "1764827995993", + "time": "2025-12-04 13:59:55.993", + "valueExplanation": "", + "pre_value": "6.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157880.0", + "mileage": "125.1", + "value": "4.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997043", + "time": "2025-12-04 13:59:57.043", + "valueExplanation": "", + "pre_value": "5.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "157920.0", + "mileage": "125.1", + "value": "3.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827997443", + "time": "2025-12-04 13:59:57.443", + "valueExplanation": "", + "pre_value": "4.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158000.0", + "mileage": "125.1", + "value": "2.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998243", + "time": "2025-12-04 13:59:58.243", + "valueExplanation": "", + "pre_value": "3.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158035.0", + "mileage": "125.1", + "value": "1.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827998593", + "time": "2025-12-04 13:59:58.593", + "valueExplanation": "", + "pre_value": "2.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + }, + { + "dt": "2025-12-04", + "vin": "LE4FG1DB3SL000870", + "uuid": "9016901c-d236-40a8-a118-75094fe491a7", + "id": "20251204_a93658b3-3c46-414b-a5e3-9b821c7b83be.ulf", + "cycle": "158080.0", + "mileage": "125.1", + "value": "0.0", + "signal": "VehSpd_X", + "start_ts": "2025-12-04 13:33:38.243", + "end_ts": "2025-12-04 14:00:23.27", + "version": "v1.0", + "ts": "1764827999043", + "time": "2025-12-04 13:59:59.043", + "valueExplanation": "", + "pre_value": "1.0", + "pre_valueExplanation": "", + "is_pre_value_needed": "" + } +] \ No newline at end of file diff --git a/backend/app/blueprints/incident_gen6/incident_sample.json b/backend/app/blueprints/incident_gen6/incident_sample.json new file mode 100644 index 0000000..64698ff --- /dev/null +++ b/backend/app/blueprints/incident_gen6/incident_sample.json @@ -0,0 +1,48726 @@ +[ + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.597272", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "228.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1920.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1320.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7010226", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1668.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.3772705", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.9035177", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.12", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.4", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1791.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.4022708", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_lca_md_drvcfg_stat_st35", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_lane_change_status", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1833.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1815.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.0022683", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7360227", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "66144a9669e93e959106ac15375b64ca", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_number_of_driver_taking_over_laterial_control", + "incident_time": "2025-12-04 13:58:27.885", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679425000000002", + "longitude": "105.36938944444444", + "gps_heading": "84.8", + "speed": "96.1", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-850.10834", + "idc_tickcount_ms": "1.764827907885E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2286.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.478521", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.26477", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.alca_lc_aborted_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "939.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1449.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2016.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "360.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2355.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.19", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.elc_turnindlvr_stat", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1659.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtq_md_drvcfg_stat_st35", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1968.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.11", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "1.33", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.685", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "228.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2385.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.6322722", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.03", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.125", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1971.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.3235204", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "423.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.598522", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "66144a9669e93e959106ac15375b64ca", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_number_of_driver_taking_over_laterial_control", + "incident_time": "2025-12-04 13:58:27.885", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679425000000002", + "longitude": "105.36938944444444", + "gps_heading": "84.8", + "speed": "96.1", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.vehspd_x_disp_offset.lineardata", + "signal_value": "3.1", + "idc_tickcount_ms": "1.764827907885E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7297728", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2484.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "585.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "732.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1848.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.355", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2418.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1941.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "705.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1680.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.8947675", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.59", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1656.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1926.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7122726", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-851.26807", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.das_turnind_rq", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1659.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7022727", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_urban_drvcfg_req", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_lane_change_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.36", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1788.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1812.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1668.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1266.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "345.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1488.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2115.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7522728", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_lca_md_drvcfg_stat_st35", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.0647688", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.595", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.15", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1773.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.355", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "66144a9669e93e959106ac15375b64ca", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_number_of_driver_taking_over_laterial_control", + "incident_time": "2025-12-04 13:58:27.885", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679425000000002", + "longitude": "105.36938944444444", + "gps_heading": "84.8", + "speed": "96.1", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827907885E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1971.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.01", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1974.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1944.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "4.0", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.6910226", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.36", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1728.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.6772723", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "1.36", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.46", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.2", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.alca_lc_abort_status", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.das_turnind_rq", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1746.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.07", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "432.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_lane_change_status", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtq_md_drvcfg_stat_st35", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "672.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2247.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.4867", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.915", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "1.115", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_lca_md_drvcfg_stat_st35", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1743.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1968.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.315", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1770.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtq_ui_stat_st35", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.eps_stwhl_trq.lineardata", + "signal_value": "-1.05", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.eps_stwhl_trq.lineardata", + "signal_value": "-0.02", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.5060213", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1122.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7522728", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.443521", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.045", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.isw_stat", + "signal_value": "4.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "606.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.1910195", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.6510162", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.34", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "255.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1812.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.0685186", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.095", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "792.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1731.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1950.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1731.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.305", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.19", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.49499997", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.6147718", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "423.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1131.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "390.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1875.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1821.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "840.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1977.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "432.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "423.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.255", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.das_turnind_rq", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2100.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.7510169", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.4", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.6947725", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.185", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "423.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2340.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.405", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "423.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2355.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.419771", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.29", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2322.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-850.10834", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1719.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "792.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1665.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.4472709", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_urban_drvcfg_req", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1533.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.9197679", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.6810224", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.9847684", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.105", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "255.0", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1773.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-851.26807", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.alca_lc_aborted_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7322729", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1791.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1803.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.415", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.4867", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_urban_drvcfg_req", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.5760157", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.0197685", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtq_md_drvcfg_stat_st35", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1893.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "792.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.alca_lc_abort_status", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.705", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.alca_lc_aborted_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.8497674", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.395", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.0060182", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.6597724", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1812.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.9085176", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.14", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.eps_stwhl_trq.lineardata", + "signal_value": "-0.45", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.327", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1464.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "546.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.5060213", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_hmo_early_cancel_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1656.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1923.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.799767", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_l2p_cn_npa_md_drvcfg_stat_st35", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1656.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.26", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "807.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2382.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1650.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2361.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "807.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.43", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "285.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1782.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.8710175", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2361.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1914.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.972268", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "96.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1785.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.64", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2184.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.45499998", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_lane_change_status", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.327", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1767.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.467271", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1224.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.724773", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-851.26807", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1971.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.8272672", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.elc_turnindlvr_stat", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "255.0", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "900.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.4960213", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.6", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "210.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.8222673", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.6810224", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtq_ui_stat_st35", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "66144a9669e93e959106ac15375b64ca", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_number_of_driver_taking_over_laterial_control", + "incident_time": "2025-12-04 13:58:27.885", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679425000000002", + "longitude": "105.36938944444444", + "gps_heading": "84.8", + "speed": "96.1", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.vehspd_x_max.lineardata", + "signal_value": "99.7", + "idc_tickcount_ms": "1.764827907885E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1332.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "354.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7185225", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_l2p_cn_npa_md_drvcfg_stat_st35", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.0371", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.8610175", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.385", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtq_ui_stat_st35", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1413.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.68", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "450.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "1.335", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.isw_stat", + "signal_value": "4.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1788.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.48", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1578.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7972732", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1152.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.405", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1761.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "480.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1794.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.6572723", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1743.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.3", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.592272", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1659.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.315", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.14", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1896.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "423.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "100.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "768.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1848.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.08", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1563.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "654.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1557.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.604772", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "66144a9669e93e959106ac15375b64ca", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_number_of_driver_taking_over_laterial_control", + "incident_time": "2025-12-04 13:58:27.885", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679425000000002", + "longitude": "105.36938944444444", + "gps_heading": "84.8", + "speed": "96.1", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtq_ui_stat_st35", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827907885E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "204.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.9410179", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "717.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1962.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.52", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.alca_dilc_operation_mode", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.05", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.14", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.9847684", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.6597724", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.41", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_take_over_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.327", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "801.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.155", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.21", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.alca_lc_abort_status", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "1.125", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1887.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "1.26", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.28", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-851.26807", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1944.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.49499997", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.345", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1971.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.34", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "345.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.alca_dilc_operation_mode", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "432.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1971.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7460227", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.025", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "2385.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.02", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.6385221", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1932.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.3747704", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.8960176", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.33", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.elc_turnindlvr_stat", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1938.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.4635212", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.5185215", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.14", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.609766", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "5042757ef55733f635f41ab45b26a6d9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "27.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931079E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.626016", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.22", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "fc587cbb12a6f2ee3bc3bfd15c65a03e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_DeactivationReason_V3", + "incident_time": "2025-12-04 13:58:31.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827911686E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1716.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.365", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.445", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.isw_stat", + "signal_value": "4.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1902.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1140.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.alca_lc_aborted", + "signal_value": "", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "1570a70e9c7b2653babb8d6d8515e70d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "3.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827934187E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.28", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.4867", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1554.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1656.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1722.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1803.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.5185215", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.515", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "1464.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "1464738b8bc128a9ef9e5f723e0fa19a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.786", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "7.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933786E12" + }, + { + "row_id": "f251364316c3d008bd50ca76d399c4cb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_HNP_SET_LeaveODD_V3", + "incident_time": "2025-12-04 13:58:31.593", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827911593E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_l2p_cn_npa_md_drvcfg_stat_st35", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "a70190e77cc718501ce7ea6b07b17bb1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "62.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927079E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1785.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "7650a6a357375a032e4f44ee512ecfff", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "59.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928087E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "ef3214d6d74668b6246f82d9760e1fc1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "53.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827928687E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "20bac836758fd054bb753b5185f3ba7c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "20.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1971.0", + "idc_tickcount_ms": "1.764827932487E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1782.0", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1974.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "c161e0614b2a38eae09734baf68f5dd6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.489", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "65.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827927489E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.725", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.12", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-1.3534051", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "40028739dbb82dd8a3e00c71f8b9b6e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "12.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933187E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.3235204", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "afca723c322936260be87a7a068fb91d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.0572686", + "idc_tickcount_ms": "1.764827934287E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.1497693", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.52", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "8b97cebd7e51924cec999043c6d9e924", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "34.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931086E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.327", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "e595c1f92a583187ae64140e6c544b25", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "15.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932986E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "66144a9669e93e959106ac15375b64ca", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_number_of_driver_taking_over_laterial_control", + "incident_time": "2025-12-04 13:58:27.885", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679425000000002", + "longitude": "105.36938944444444", + "gps_heading": "84.8", + "speed": "96.1", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827907885E12" + }, + { + "row_id": "0b0e1be59f69b6431241b5a855b3cf2b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Overrule", + "incident_time": "2025-12-04 13:58:27.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679436388888888", + "longitude": "105.369535", + "gps_heading": "84.6", + "speed": "96.0", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.28228745", + "idc_tickcount_ms": "1.764827907986E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1743.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1662.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.4160209", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "c158bf2e90900444f2bd181225d18b1c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.2", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827926886E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.14", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.155", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "a97ec35affab2badab752ff926a2d14a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.589", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "64.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.52", + "idc_tickcount_ms": "1.764827927589E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "a60d4f286b93b95eb581e900283fda47", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "47.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929487E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.23499998", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "dc32adfb2b9797c08906418580b81586", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:32.084", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "96.5", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827912084E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.21", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "aad5beb3625f9bbb4ead3af7a78dd21d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "60.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827927987E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "79e2cf9862ed4350eb1af246818d4b4f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "54.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928587E12" + }, + { + "row_id": "c29751c2ef1c9bc20a079792f90f6e7a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "49.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929188E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "66144a9669e93e959106ac15375b64ca", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALSA_number_of_driver_taking_over_laterial_control", + "incident_time": "2025-12-04 13:58:27.885", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.679425000000002", + "longitude": "105.36938944444444", + "gps_heading": "84.8", + "speed": "96.1", + "odometer": "124.6", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.vehspd_x_disp_rq.lineardata", + "signal_value": "99.9", + "idc_tickcount_ms": "1.764827907885E12" + }, + { + "row_id": "56e31460396ad1d4cfa6f923c428051b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "61.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827927887E12" + }, + { + "row_id": "abba0210ccba2ba859e105b4959e8964", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.086", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "69.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827927086E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "30569e03708b427a360b82139b5858a3", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.188", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "33.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827931188E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "630.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "3c82ee0cb11461b209a58b9c492a90c1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "45.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.43", + "idc_tickcount_ms": "1.764827929687E12" + }, + { + "row_id": "2f396ea1825142a198a9742e93868691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "22.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932287E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "11df8393de8f9ef742234ea864483295", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "40.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827930387E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1755.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "1f601cf23af8b2d726b9773c071da29a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "51.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.9885182", + "idc_tickcount_ms": "1.764827928987E12" + }, + { + "row_id": "730befbc3cb78166e647e48318b69dbe", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.494", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933494E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "cbda7f504ee7f3f7c41bd92b6847509a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.289", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "67.8", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827927289E12" + }, + { + "row_id": "bb1827e6b9822dbfe0f247b81f1af1cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "55.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928487E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.7522728", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "4e349cb1a12534bc4c733b159f2b8dec", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929887E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "5854bf67f64f8e349e0f74d1c4517725", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.886", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "6.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933886E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.3160203", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "57c9646532fef3142f196e26e17b3176", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.789", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "17.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827932789E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "13afe5b1bbc6cc0757ccae12ca828c45", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "35.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930987E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "3272f871b83b700d9cc410862dfacd2c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "31.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.5510218", + "idc_tickcount_ms": "1.764827931386E12" + }, + { + "row_id": "d29398f0bfec4fbc04e5927869b612c8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.187", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-2.923518", + "idc_tickcount_ms": "1.764827930187E12" + }, + { + "row_id": "396475097b44658aad15ff2dfc62450d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "51.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928887E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_lane_change_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "0342946b231bdc55755aa41cd9edaf29", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "8.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827933687E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "660cd4e347a358dcc414770202144f09", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "18.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827932686E12" + }, + { + "row_id": "a04a7f5ede43607d039ce43479644ab8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "24.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827932087E12" + }, + { + "row_id": "ad5c43b930439436f1ae0d365968b263", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "28.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931687E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.825", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "21afd905159c5bb068c2084b6b989568", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.888", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "16.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827932888E12" + }, + { + "row_id": "b82eb7beceda374fb11533a7c4e50755", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "37.1", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827930787E12" + }, + { + "row_id": "5cb2b2d86e37d799b313730084a99203", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680531666666667", + "longitude": "105.37453416666666", + "gps_heading": "72.6", + "speed": "63.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.dwdilongitudinalroadeventlist_0_eventtype", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827927688E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1794.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "49622615820d71413ad9742c75e62247", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68068638888889", + "longitude": "105.37510444444445", + "gps_heading": "72.5", + "speed": "32.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.4060206", + "idc_tickcount_ms": "1.764827931287E12" + }, + { + "row_id": "82bc560760dc0455f007fdc5b375e1a9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "2.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.0022683", + "idc_tickcount_ms": "1.764827934386E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "d64e8050cb4f9302d2d3d9b6fdd9affb", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "0.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934586E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "d4d277dade5be80bf454cb1a46ef27e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.887", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "36.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930887E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "432.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "db1e6f4486ede5ea751d9a9e905b99a1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "11.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1902.0", + "idc_tickcount_ms": "1.764827933286E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "b485ca2032f2184e52e466ab55218315", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "68.7", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.61694", + "idc_tickcount_ms": "1.764827927186E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "2a6e0b913d2f3942d6eef916f41fa977", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "56.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "786.0", + "idc_tickcount_ms": "1.764827928386E12" + }, + { + "row_id": "f7c17de43767b3880be597136c929d19", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680730833333335", + "longitude": "105.37526861111111", + "gps_heading": "72.5", + "speed": "9.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "978.0", + "idc_tickcount_ms": "1.764827933587E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_function_state", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "487fc02e9d1411ade9202f40a1731ca5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.486", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "39.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.mmt_l2pp_function_state", + "signal_value": "6.0", + "idc_tickcount_ms": "1.764827930486E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq.lineardata", + "signal_value": "504.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "3bcc33aae3350564e3a908b33384b777", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.088", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "4.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.is1_vehaccel_x.lineardata", + "signal_value": "-3.2097695", + "idc_tickcount_ms": "1.764827934088E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "9f36b4b8178325df219425a1a959981e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "50.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-855.90686", + "idc_tickcount_ms": "1.764827929087E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "20e846c40d304615538d48c97cfe3812", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680581944444445", + "longitude": "105.37472", + "gps_heading": "72.5", + "speed": "52.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827928787E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "baa7f1f576ff16cb0346797ce2580775", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.585", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "73.3", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827926585E12" + }, + { + "row_id": "39b423bfbbf2e1076b354dc8bbd0c356", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:54.487", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680737222222223", + "longitude": "105.37529194444444", + "gps_heading": "72.5", + "speed": "1.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827934487E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1662.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "340df693670cb450853d7c03bcec043d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "10.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933386E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "3.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "d0c61f854d8d7b57a2b33979e467d7b6", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "41.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930286E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_lane_change_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911687E12" + }, + { + "row_id": "cdc07c118440257ebe64823dca7162c4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_ALCA_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.688", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_funcroadclass_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911688E12" + }, + { + "row_id": "40e448d4ee89dcf16e7a43e728a4bc96", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_HNP_Deactivation", + "incident_time": "2025-12-04 13:58:31.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "0.21", + "idc_tickcount_ms": "1.764827911586E12" + }, + { + "row_id": "2b8a4cc9de88346c7986f69af979e90c", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "58.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.acc_event", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827928186E12" + }, + { + "row_id": "e7645f53a909994f8e078951d5bb53ea", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.49", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "30.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931049E12" + }, + { + "row_id": "3128230e0e8353b108117fcbbcab1889", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "21.3", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.ci_dr_mm_pos_alt", + "signal_value": "-856.1968", + "idc_tickcount_ms": "1.764827932387E12" + }, + { + "row_id": "66e0b32652a8ea7be87406f6e6a501d1", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.286", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827929286E12" + }, + { + "row_id": "15aeaa7a934257efeaba37837ba49eb8", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "43.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827929987E12" + }, + { + "row_id": "9dcbd7486117082f8ef65ecb11eddaf0", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_L2P_setting_changed_v1", + "incident_time": "2025-12-04 13:58:31.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "", + "longitude": "", + "gps_heading": "", + "speed": "97.1", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.pt4_ptcoor_accelpdlposn_d_raw.lineardata", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827911587E12" + }, + { + "row_id": "ac32c25dd5b93982cbc59eb4ef5d790f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:47.386", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "66.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827927386E12" + }, + { + "row_id": "f737d66636f541c8de6c89fb484cef42", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "29.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_ui_stat_st3", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827931586E12" + }, + { + "row_id": "742617824989c847d06f324937538401", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:48.287", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68056055555556", + "longitude": "105.37464027777777", + "gps_heading": "72.5", + "speed": "57.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827928287E12" + }, + { + "row_id": "83cc815c149cf13c2569cb6b490ca6f5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.387", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680605833333335", + "longitude": "105.37480749999999", + "gps_heading": "72.5", + "speed": "48.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827929387E12" + }, + { + "row_id": "bf7bcfb0c473ca65eded4b5bc9ad0bad", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.586", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "46.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827929586E12" + }, + { + "row_id": "c0fab0bd8bba5ce759184eb98bd9eca9", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68071777777778", + "longitude": "105.37522055555556", + "gps_heading": "72.5", + "speed": "19.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.navi_routeguidance_state", + "signal_value": "2.0", + "idc_tickcount_ms": "1.764827932587E12" + }, + { + "row_id": "7f43454e169696f432e42049cfd93728", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.986", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "25.5", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.sla_nxtspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827931986E12" + }, + { + "row_id": "6279673d2db535169924d27b512148e5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68066361111111", + "longitude": "105.37502083333334", + "gps_heading": "72.5", + "speed": "42.7", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827930087E12" + }, + { + "row_id": "38fe3ea79e966216f598e66b5281f74f", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.79", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "71.9", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1188.0", + "idc_tickcount_ms": "1.764827926079E12" + }, + { + "row_id": "22f774407610711be3f0e643bb9c2c40", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 13:58:45.685", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68041416666667", + "longitude": "105.37410027777777", + "gps_heading": "72.6", + "speed": "77.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.alca_dilc_operation_mode", + "signal_value": "14.0", + "idc_tickcount_ms": "1.764827925685E12" + }, + { + "row_id": "fc7dcbe67cc57da4bd3abe81fee5334a", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_f6a11b8a-9bbe-4894-b8b7-02957dac18ff.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "Test_I_SET_turnindlvr_stat_changed", + "incident_time": "2025-12-04 14:00:04.785", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680739444444445", + "longitude": "105.37530027777777", + "gps_heading": "72.5", + "speed": "0.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:04:30.013", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mm_ctrlloopstate", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764828004785E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.das_dtr_spdval_st3", + "signal_value": "251.0", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "bbbd3b3f4e2e7dd0f16ec6f7f80ffef4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.587", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.8", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.l2p_deactivation_reason", + "signal_value": "0.0", + "idc_tickcount_ms": "1.764827930587E12" + }, + { + "row_id": "880e24aafdaa522ce2bcc62a9f558346", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:50.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68067388888889", + "longitude": "105.37505805555556", + "gps_heading": "72.5", + "speed": "38.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.tsa_currspdlim_val_st3", + "signal_value": "254.0", + "idc_tickcount_ms": "1.764827930687E12" + }, + { + "row_id": "49d68cdd7ea64898b14f7a4b1f6fcd7d", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:51.889", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.6806975", + "longitude": "105.37514583333333", + "gps_heading": "72.5", + "speed": "26.6", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827931889E12" + }, + { + "row_id": "b2c1dec99445b6aaf5b7f32aeba4d9dc", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.985", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680501111111113", + "longitude": "105.3744211111111", + "gps_heading": "72.6", + "speed": "70.5", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827926985E12" + }, + { + "row_id": "b5cbaaad618b2e8e09ba580ae4eee44e", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:52.186", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68070861111111", + "longitude": "105.37518694444445", + "gps_heading": "72.5", + "speed": "23.4", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brkpdl_stat", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827932186E12" + }, + { + "row_id": "a4cbb483474b5ffe94b8b0512d235cc5", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.987", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680735000000002", + "longitude": "105.3752836111111", + "gps_heading": "72.5", + "speed": "5.2", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.brktrq_d.lineardata", + "signal_value": "1815.0", + "idc_tickcount_ms": "1.764827933987E12" + }, + { + "row_id": "21c02b0cc15fb9e044ae6501c6287bb4", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:49.787", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680636944444448", + "longitude": "105.37492194444444", + "gps_heading": "72.5", + "speed": "44.9", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827929787E12" + }, + { + "row_id": "628b78704c069ed10230eea272dc55cd", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:53.087", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.68072666666667", + "longitude": "105.37525333333333", + "gps_heading": "72.5", + "speed": "14.0", + "odometer": "125.1", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.hoswd_handson_stat_master", + "signal_value": "5.0", + "idc_tickcount_ms": "1.764827933087E12" + }, + { + "row_id": "7c6367603a494709d783166223aa0691", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_9b8da914-5466-4cb4-bff3-4efa3f24df70.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "I_NP_HarshBrake_ByCustomer_Process", + "incident_time": "2025-12-04 13:58:46.686", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.680473055555556", + "longitude": "105.37431805555555", + "gps_heading": "72.6", + "speed": "72.6", + "odometer": "125.0", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6val.mmlat_out_adas_ftwhlangl_rq_st35", + "signal_value": "-0.165", + "idc_tickcount_ms": "1.764827926686E12" + }, + { + "row_id": "408e09ec335ccad9132c61be5440213b", + "oneid": "LE4FG1DB3SL000870", + "id": "20251204_ed296544-32c6-40cc-b2a3-5ad49a95b76c.ulf", + "dcjid": "e0e50fa8-0154-49b9-88b8-02b90bc63bd7", + "dcrid": "a64a62c6-9d43-4750-a63b-f3f87cd1b706", + "incident_name": "TEST_I_SET_acc_deactivation_v1", + "incident_time": "2025-12-04 13:58:31.687", + "session_id": "9016901c-d236-40a8-a118-75094fe491a7", + "session_start_ts": "2025-12-04 13:33:38.243", + "country_code": "CHN", + "sw_version": "2.0.0-P+HarzQNX.V5.1.2.ST35.A072.12.PROD.MF.902.20250826.22191.tgz", + "carmodel": "V174", + "formatversion": "1.2", + "latitude": "31.67955527777778", + "longitude": "105.37055083333333", + "gps_heading": "79.5", + "speed": "97.0", + "odometer": "124.7", + "received_date": "2025-12-04 14:03:00.012", + "dt": "2025-12-04", + "version": "v1.0", + "key": "ei.idc_m_p.ama.p6fhal.adas_cua_wayform_st3", + "signal_value": "1.0", + "idc_tickcount_ms": "1.764827911687E12" + } +] \ No newline at end of file diff --git a/backend/app/blueprints/incident_gen6/routes.py b/backend/app/blueprints/incident_gen6/routes.py new file mode 100644 index 0000000..c9fdf21 --- /dev/null +++ b/backend/app/blueprints/incident_gen6/routes.py @@ -0,0 +1,333 @@ +from datetime import datetime, timedelta, timezone +from queue import Queue +import threading +from flask import Blueprint, json, jsonify, current_app, request +from app.blueprints.incident_gen6.service import aggregate_and_sort_incidents_gen6, aggregate_line_list_gen6, convert_to_histro_data_v2, get_logging_list_gen6, process_incident_data_gen6 +from app.link_wedata_utils import sync_query_tencent_cloud_data +from app.utils import decrypt_code + +incident_gen6_bp = Blueprint("incident_gen6_bp", __name__) + + +@incident_gen6_bp.route("/list1", methods=["POST"]) +def acc_list1(): + encrypted = request.headers.get('X-Encrypted-Timestamp') + if not encrypted: + return jsonify({"msg": "Parameters are Incorrect"}), 400 + + encrypt_str=decrypt_code(encrypted) + if not encrypt_str: + return jsonify({"msg": "Invalid request"}), 400 + + data = request.get_json() + incident_type = data.get("incident_type", "").strip() or None + singal_name = data.get("singal_name", []) or None + + # print("singal_name",singal_name) + + import os + current_dir = os.path.dirname(os.path.abspath(__file__)) + json_path = os.path.join(current_dir, "incident_sample.json") + with open(json_path, "r", encoding="utf-8") as f: + events_data = json.load(f) + + histo_path = os.path.join(current_dir, "histro.json") + with open(histo_path, "r", encoding="utf-8") as f_histro: + histo_data = json.load(f_histro) + + histo_data_new = [] + for item in histo_data: + new_item = { + 'signal': item['signal'], + 'time': item['time'], + 'value': item['value'], + 'valueExplanation': item['valueExplanation'], + 'pre_value':item['pre_value'], + 'pre_valueExplanation':item['pre_valueExplanation'], + 'is_pre_value_needed':item['is_pre_value_needed'] + } + histo_data_new.append(new_item) + + histo_list=convert_to_histro_data_v2(histo_data_new) + events_data_new=[] + for item in events_data: + new_item = { + 'oneid': item['oneid'], + 'incident_name': item['incident_name'], + 'incident_time': item['incident_time'], + 'key': item['key'], + 'signal_value': item['signal_value'], + 'latitude': item['latitude'], + 'longitude': item['longitude'], + 'odometer': item['odometer'], + 'speed': item['speed'] + } + events_data_new.append(new_item) + + if incident_type == "Parking": + # 过滤出 incident_name 等于 Test_I_Park_Trip 的数据 + events_data_new = [ + item for item in events_data_new + if item.get("incident_name") in ["Test_I_Park_Trip", "Test_I_RMA"] + ] + elif incident_type == "Driving": + # 过滤出 incident_name 不等于 Test_I_Park_Trip 的数据 + events_data_new = [ + item for item in events_data_new + if item.get("incident_name") not in ["Test_I_Park_Trip", "Test_I_RMA"] + ] + + # event数据 + events_list=process_incident_data_gen6(events_data_new) # 初始的event list数据,但是没有15分钟处理 + map_list = aggregate_and_sort_incidents_gen6(events_data_new) + # print(f"共 {len(map_list)} 条:") + line_list = aggregate_line_list_gen6(map_list) + logging_list=get_logging_list_gen6(map_list) + response = { + "code": 200, + "data": { + # "events_data":events_data, + "events_list": events_list, + "map_list": map_list, + "line_list": line_list, + "logging_list": logging_list, + "histo_list":histo_list + }, + "msg": "success", + } + return jsonify(response) + + + +@incident_gen6_bp.route("/list", methods=["POST"]) +def acc_list(): + # 验证请求头的信息,通过才继续 + encrypted = request.headers.get('X-Encrypted-Timestamp') + if not encrypted: + return jsonify({"msg": "Parameters are Incorrect"}), 400 + + encrypt_str=decrypt_code(encrypted) + if not encrypt_str: + return jsonify({"msg": "Invalid request"}), 400 + + data = request.get_json() + incident_type = data.get("incident_type", "").strip() or None + signal_name = data.get("signal_name", []) + + if not data: + return jsonify({"code": 400, "data": None, "msg": "请填写有效参数"}), 400 + + + required_fields = ["incident_time", "oneid"] + for field in required_fields: + if field not in data: + return ( + jsonify({"code": 400, "data": None, "msg": f"缺少必需字段: {field}"}), + 400, + ) + + incident_time = data["incident_time"] + # 检查是否为非空列表 + if not isinstance(incident_time, list) or len(incident_time) != 2: + return ( + jsonify( + { + "code": 400, + "data": [], + "msg": "incident_time必须是包含两个时间的数组", + } + ), + 400, + ) + + + oneid = data["oneid"] + if not isinstance(oneid, str) or not oneid.strip(): + return jsonify({"code": 400, "data": None, "msg": "oneid必须是非空字符串"}), 400 + + + config = { + 'region': 'ap-shanghai', # 引擎所在地域 + 'secret_id': current_app.config['WEDATA_SECRET_ID'], + 'secret_key': current_app.config['WEDATA_SECRET_KEY'], + 'engine': current_app.config['WEDATA_ENGINE'], # 引擎名称 + "database":current_app.config['WEDATA_DATABASE'] + } + + # 生成sql + try: + incid_sql, incid_params = generate_incidents_sql(incident_time, oneid, signal_name, table_name='gen6_incidents') + histo_sql, histo_params = generate_incidents_sql(incident_time, oneid, signal_name, table_name='gen6_histograms') + except ValueError as e: + return jsonify({"code": 400, "data": None, "msg": f"参数错误:{str(e)}"}), 400 + + print("incid_sql", incid_sql) + print("histo_sql", histo_sql) + + result_queue = Queue(maxsize=2) # 最多存放2个结果 + + # ========== 仅修改这里:给原函数加极简异常防护(不新增任何函数) ========== + def safe_query(*args): + """极简包装:仅捕获异常,保证队列必有结果""" + try: + # 直接调用原函数,参数完全传透(args就是config, sql, params, queue, task_id) + sync_query_tencent_cloud_data(*args) + except Exception as e: # except Exception as e: + # 异常时手动向队列写错误结果(args[3]是queue,args[4]是task_id) + args[3].put({"task_id": args[4], "success": False, "data": None, "error": str(e)}) + + # try: + # error_msg=( + # f'数据库连接失败:{str(e)}' + # if str(e) + # else f'底层系统错误:{type(e).__name__}' + # ) + # args[3].put({"task_id": args[4], "success": False, "data": None, "error":error_msg}) + # except Exception as query_err: + # print(f'任务失败,无法写入队列:{query_err},原始错误是:{e}') + + + # 5. 创建并启动两个查询线程 + thread1 = threading.Thread( + target=safe_query, + args=(config, incid_sql, incid_params, result_queue, "incidents") # task_id 标记为 incidents + ) + thread2 = threading.Thread( + target=safe_query, + args=(config, histo_sql, histo_params, result_queue, "histo") # task_id 标记为 signals + ) + + # 启动线程 + thread1.start() + thread2.start() + thread1.join() + thread2.join() + + # 从队列中提取结果 + results_dict = {} + for _ in range(2): + task_result = result_queue.get() + results_dict[task_result["task_id"]] = task_result + + # 8. 检查是否有查询失败 + has_error = False + error_msg = "" + for task_id, res in results_dict.items(): + if not res["success"]: + has_error = True + error_msg = f"查询异常:{res['error'][:80]}" # 错误信息保留前80 + + if has_error: + return jsonify({ + "code": 500, + "msg": f"查询失败:{error_msg}", + "data": None + }), 500 + + + # 9. 获取两个表的查询结果(业务处理核心) + events_data = results_dict["incidents"]["data"] + histo_data = results_dict["histo"]["data"] + + histo_list=convert_to_histro_data_v2(histo_data) + + if incident_type == "Parking": + # 过滤出 incident_name 等于 Test_I_Park_Trip 的数据 + events_data = [ + item for item in events_data + if item.get("incident_name") in ["Test_I_Park_Trip", "Test_I_RMA"] + ] + elif incident_type == "Driving": + # 过滤出 incident_name 不等于 Test_I_Park_Trip 的数据 + events_data = [ + item for item in events_data + if item.get("incident_name") not in ["Test_I_Park_Trip", "Test_I_RMA"] + ] + + # event数据 + events_list=process_incident_data_gen6(events_data) # 初始的event list数据,但是没有15分钟处理 + map_list = aggregate_and_sort_incidents_gen6(events_data) + line_list = aggregate_line_list_gen6(map_list) + logging_list=get_logging_list_gen6(map_list) + response = { + "code": 200, + "data": { + # "events_data":events_data, + "events_list": events_list, + "map_list": [], + "line_list": line_list, + "logging_list": logging_list, + "histo_list":histo_list + }, + "msg": "success", + } + return jsonify(response) + + +def generate_incidents_sql(incident_time: list, oneid: str, signal_list: list, table_name: str) -> tuple: + """ + 简化版:仅处理用到的两个表,字段名映射极简,去掉冗余扩展 + - gen6_incidents:时间=incident_time,ID字段=oneid + - gen6_histograms:时间=time,ID字段=vin + """ + # 处理UTC时间(带T/Z)转本地时间(东八区) + def convert_utc_to_cst(utc_time_str): + try: + # 解析UTC时间(支持带T/Z的格式) + utc_dt = datetime.fromisoformat(utc_time_str.replace('Z', '+00:00')) + # 转东八区(UTC+8) + cst_tz = timezone(timedelta(hours=8)) + cst_dt = utc_dt.astimezone(cst_tz) + # 转为数据库兼容的格式(YYYY-MM-DD HH:mm:ss.fff) + return cst_dt.strftime("%Y-%m-%d %H:%M:%S.%f")[:-3] # 保留3位毫秒 + except Exception as e: + # 解析失败则返回原时间(兼容测试参数) + return utc_time_str + + # 转换时间范围 + incident_time = [convert_utc_to_cst(t) for t in incident_time] + + # 1. 极简字段映射(只保留用到的表,避免KeyError) + FIELD_MAP = { + "gen6_incidents": {"time": "incident_time", + "id": "oneid", + # "select_fields": "oneid, incident_name,incident_time,`key`,signal_value,latitude,longitude,odometer,speed" }, + "select_fields": "*" }, + "gen6_histograms": {"time": "time", + "id": "vin", + "select_fields": "signal, time, value, valueExplanation"}, + } + + # 2. 基础校验(只校验用到的表,去掉冗余) + if table_name not in FIELD_MAP: + raise ValueError(f"仅支持查询表:{list(FIELD_MAP.keys())}") + if len(incident_time) != 2 or not all(incident_time): + raise ValueError("incident_time必须是包含两个非空时间的列表") + if not isinstance(oneid, str) or not oneid.strip(): + raise ValueError("oneid必须是非空字符串") + + # 3. 提取当前表的字段名(核心:只用两行完成字段替换) + time_field = FIELD_MAP[table_name]["time"] + id_field = FIELD_MAP[table_name]["id"] + select_fields = FIELD_MAP[table_name]["select_fields"] + + # 4. 拼接SQL条件(极简逻辑,去掉冗余注释) + conditions = [ + f"{time_field} BETWEEN %s AND %s", + f"{id_field} = %s" + ] + params = [incident_time[0], incident_time[1], oneid] + + # 仅gen6_histograms处理signal条件 + if table_name == "gen6_histograms": + if signal_list: + signal_placeholders = ",".join(["%s"] * len(signal_list)) + conditions.append(f"signal IN ({signal_placeholders})") + params += signal_list + else: + conditions.append("signal = %s") + params.append("DAS_DTR_UI_Stat_ST3") + + # 5. 生成最终SQL(简化格式化) + sql = f"SELECT {select_fields} FROM {table_name} WHERE {' AND '.join(conditions)}" + return sql, params \ No newline at end of file diff --git a/backend/app/blueprints/incident_gen6/service.py b/backend/app/blueprints/incident_gen6/service.py new file mode 100644 index 0000000..7cfe8b2 --- /dev/null +++ b/backend/app/blueprints/incident_gen6/service.py @@ -0,0 +1,427 @@ +from collections import defaultdict +from datetime import datetime, timedelta +import json + + +def process_incident_data_gen6(test_val): + """ + 处理事故数据,按照incident_name去重(移除原incident_time组合去重),移除idc_tickcount_ms排序,其他逻辑不变。 + + Args: + test_val (list): 原始数据列表 + + Returns: + dict: 格式化后的数据 + """ + + # 1. 仅按照 incident_name 去重(核心修改点1:移除incident_time组合) + unique_data_dict = {} + for item in test_val: + name = item.get("incident_name") + # 仅判断incident_name是否存在,不再依赖incident_time + if name: + # 仅用incident_name作为去重键 + key = name + if key not in unique_data_dict: + unique_data_dict[key] = item + + # 获取去重后的数据列表(核心修改点2:移除排序步骤) + unique_data_list = list(unique_data_dict.values()) + + # 3. 提取指定字段(原逻辑完全保留,仅将遍历对象从sorted_data改为unique_data_list) + processed_events_data = [] + for index, item in enumerate(unique_data_list, 1): + incident_time_str = item.get("incident_time") + + if not incident_time_str: + continue + + try: + # 解析新的时间格式 "2025-11-30 20:51:35.684000" + # 先尝试直接解析完整格式 + try: + # 移除毫秒部分,只保留到秒 + base_time_str = incident_time_str.split('.')[0] + incident_datetime = datetime.strptime(base_time_str, "%Y-%m-%d %H:%M:%S") + except ValueError: + # 如果失败,尝试其他可能的格式 + try: + incident_datetime = datetime.fromisoformat(incident_time_str.replace('Z', '+00:00')) + except: + # 再次失败,使用当前时间 + incident_datetime = datetime.now() + + # 格式化日期和时间 + date_str_result = incident_datetime.strftime("%Y-%m-%d") + time_str_result = incident_datetime.strftime("%H:%M:%S") + + except (ValueError, TypeError) as e: + print(f"Warning: Failed to parse incident_time '{incident_time_str}': {e}") + # 使用默认值 + date_str_result = item.get("dt", "").split(' ')[0] if item.get("dt") else datetime.now().strftime("%Y-%m-%d") + time_str_result = "00:00:00" + + # 创建新的字典 + processed_item = { + "id": index, + "oneid": item.get("oneid", ""), + "date": date_str_result, + "time": time_str_result, + "incident_name": item.get("incident_name", ""), + "incident_description": "", + } + processed_events_data.append(processed_item) + + # 4. 构建最终返回的字典 + total_count = len(processed_events_data) + result = {"data": processed_events_data, "total": total_count} + + return result + + +def aggregate_and_sort_incidents_gen6(raw_data): + """ + 简化版本:按(incident_time + incident_name)精确聚合 + 适用于同一事件的incident_time完全一致的情况 + """ + aggregate_dict = {} + + for item in raw_data: + incident_time = item.get("incident_time", "1970-01-01 00:00:00.000") + incident_name = item.get("incident_name", "unknown_incident") + aggregate_key = (incident_time, incident_name) + + if aggregate_key not in aggregate_dict: + aggregate_dict[aggregate_key] = { + "base_info": { + "oneid": item.get("oneid"), + "incident_time": incident_time, + "speed": item.get("speed"), + "gps_heading": item.get("gps_heading"), + "incident_name": incident_name, + "latitude": item.get("latitude"), + "longitude": item.get("longitude"), + "odometer": item.get("odometer"), + "sw_version": item.get("sw_version"), + "carmodel": item.get("carmodel"), + "session_id": item.get("session_id"), + "dt": item.get("dt") + }, + "signal_data": {} + } + + signal_key = item.get("key", "unknown_key") + aggregate_dict[aggregate_key]["signal_data"][signal_key] = { + 'signal_value': item.get('signal_value', '0.0'), + "odometer": item.get('odometer', '0.0') + } + + # 按incident_time排序 + sorted_result = sorted( + aggregate_dict.values(), + key=lambda x: x["base_info"]["incident_time"] + ) + + return sorted_result + + +def aggregate_line_list_gen6(map_list): + """ + 按incident_time聚合事件数据,生成时间线列表 + 改进点: + 1. 使用正确的时间字段名 + 2. 支持精确的时间排序 + 3. 处理同一时间点的多条记录 + 4. 添加健壮的错误处理 + """ + aggregated_data = {} + + # 遍历所有事件 + for item in map_list: + try: + base_info = item['base_info'] + + # 提取需要的字段 + incident_time_str = base_info.get('incident_time', '1970-01-01 00:00:00.000') + speed = base_info.get('speed', '0') + oneid = base_info.get('oneid', '') + latitude = base_info.get('latitude', '0') + longitude = base_info.get('longitude', '0') + incident_name = base_info.get('incident_name', 'Unknown Incident') + + # 创建聚合键(使用完整时间字符串) + aggregate_key = incident_time_str + + # 聚合处理 + if aggregate_key not in aggregated_data: + # 新的时间点,初始化记录 + aggregated_data[aggregate_key] = { + 'incident_time': incident_time_str, # 使用正确的字段名 + 'speed': speed, + 'oneid': oneid, + 'latitude': latitude, + 'longitude': longitude, + 'incident_names': [incident_name], # 使用复数形式,表示可能有多个 + 'record_count': 1 # 记录该时间点的记录数 + } + else: + # 已存在的时间点 + existing = aggregated_data[aggregate_key] + + # 可选:处理同一时间点不同记录的字段冲突 + # 这里选择保留第一条的速度,但如果需要可以取平均值或最新值 + # existing['speed'] = str((float(existing['speed']) + float(speed)) / 2) + + # 添加事件名称(去重) + if incident_name not in existing['incident_names']: + existing['incident_names'].append(incident_name) + + existing['record_count'] += 1 + + except (KeyError, TypeError) as e: + print(f"Warning: Skipping item due to missing field: {e}") + continue + + # 转换为列表形式,并按时间正序排序 + def get_sort_time(record): + try: + time_str = record['incident_time'] + if '.' in time_str: + # 处理带毫秒的时间 + return datetime.strptime(time_str, "%Y-%m-%d %H:%M:%S.%f") + else: + # 处理不带毫秒的时间 + return datetime.strptime(time_str, "%Y-%m-%d %H:%M:%S") + except (ValueError, TypeError) as e: + print(f"Warning: Failed to parse time '{record['incident_time']}' for sorting: {e}") + return datetime(1970, 1, 1) # 返回默认时间 + + # 按incident_time正序排序(从小到大) + result = sorted(aggregated_data.values(), key=get_sort_time) + + return result + + +def get_logging_list_gen6(map_list): + """ + 处理map_list数据,生成logging列表,并按incident_time正序排序 + 同时对每个记录的signals按name字段进行字符顺序排序 + """ + # 1. 首先对map_list按incident_time进行排序 + def get_sort_key(item): + try: + incident_time_str = item['base_info']['incident_time'] + # 处理时间字符串,统一格式 + if '.' in incident_time_str: + # 保留到毫秒级别进行排序 + base_time_str = incident_time_str.split('.')[0] + milliseconds = incident_time_str.split('.')[1][:6] # 取最多6位毫秒 + full_time_str = f"{base_time_str}.{milliseconds}" + return datetime.strptime(full_time_str, "%Y-%m-%d %H:%M:%S.%f") + else: + return datetime.strptime(incident_time_str, "%Y-%m-%d %H:%M:%S") + except (ValueError, TypeError, KeyError) as e: + print(f"Warning: Failed to parse incident_time for sorting: {e}") + # 解析失败时返回一个很早的时间,确保这些记录排在最后 + return datetime(1970, 1, 1) + + # 按incident_time正序排序(从小到大) + sorted_map_list = sorted(map_list, key=get_sort_key) + + # 2. 处理排序后的数据 + result = [] + id = 0 + for item in sorted_map_list: + id += 1 + row_data = {} + row_data['id'] = id + base_info = item['base_info'] + + # 处理时间格式 - 新格式为 "2025-11-30 20:23:05.394000" + incident_time_str = base_info['incident_time'] + try: + # 尝试解析新格式的时间 + if '.' in incident_time_str: + # 移除毫秒部分,只保留到秒 + base_time_str = incident_time_str.split('.')[0] + dt = datetime.strptime(base_time_str, "%Y-%m-%d %H:%M:%S") + else: + dt = datetime.strptime(incident_time_str, "%Y-%m-%d %H:%M:%S") + row_data['time'] = dt.strftime("%H:%M:%S") + except (ValueError, TypeError) as e: + print(f"Warning: Failed to parse incident_time '{incident_time_str}': {e}") + # 使用默认时间 + row_data['time'] = "00:00:00" + + # 处理经纬度 - 可能为 "NULL" 字符串 + longitude = str(base_info.get('longitude', '')).strip() + latitude = str(base_info.get('latitude', '')).strip() + + # 处理 "NULL" 字符串 + if longitude.lower() == "null" or longitude == "": + longitude = "N/A" + if latitude.lower() == "null" or latitude == "": + latitude = "N/A" + + # 格式化坐标显示 + row_data['coordinates'] = f"{longitude[:12]}\n{latitude[:12]}" + + # 处理idc_tickcount_ms + row_data['idc_tickcount_ms'] = base_info.get('idc_tickcount_ms_int', 0) + + # 处理速度 - 可能为 "NULL" 字符串 + speed = str(base_info.get('speed', '')).strip() + if speed.lower() == "null" or speed == "": + speed = "0" + row_data['speed'] = speed + + # 处理incident信息 - 新格式没有Incident__description + row_data['incident'] = { + "name": base_info.get('incident_name', 'Unknown Incident'), + "description": "" # 使用incident_name作为描述 + } + + # 处理信号数据 + row_data['signals'] = [] + for key, value in item["signal_data"].items(): + signals_name_value = {} + signals_name_value["name"] = key + + # 新格式使用signal_value字段 + signal_value = value.get('signal_value', '') + if signal_value is None or signal_value == "": + signal_value = "N/A" + signals_name_value["value"] = signal_value + + # 匹配到meanning的值 + meaning_result=match_meaning(key,signal_value) + # 新格式没有Meaning字段,使用空字符串 + signals_name_value["meaning"] = meaning_result + + row_data['signals'].append(signals_name_value) + + # === 新增:对signals列表按name字段进行字符顺序排序 === + row_data['signals'] = sorted(row_data['signals'], key=lambda x: x['name']) + + result.append(row_data) + + return result + + +def convert_to_histro_data(raw_data): + """ + 转换原始数据为前端折线图格式(time保留%Y-%m-%d %H:%M:%S.%f格式) + :param raw_data: 原始字典列表 + :return: 前端所需格式的列表 + """ + # 步骤1:按signal分组 + signal_groups = defaultdict(list) + for item in raw_data: + signal_groups[item["signal"]].append(item) + + # 步骤2:处理每个分组,构造最终数据 + chart_data = [] + for signal_name, items in signal_groups.items(): + # 修复1:统一使用start_ts字段进行排序(因为这是时间轴数据) + def sort_by_start_ts(item): + return datetime.strptime(item["time"], "%Y-%m-%d %H:%M:%S.%f") + + sorted_items = sorted(items, key=sort_by_start_ts) + + # 修复3:统一使用time作为X轴时间数据(与排序字段一致) + time_list = [item["time"] for item in sorted_items] # 使用start_ts作为时间轴 + values_list = [float(item["value"]) for item in sorted_items] # value转数值 + + # 子步骤3:构造当前signal的折线图数据 + chart_item = { + "signalName": signal_name, + "time": time_list, # X轴时间数据 + "values": values_list # Y轴数值数据 + } + chart_data.append(chart_item) + + return chart_data + + +def convert_to_histro_data_v2(raw_data): + """ + 转换原始数据为前端图表格式 {x: 时间, y: 数值, value: 数值} + :param raw_data: 原始字典列表,需包含 "signal"、"time"、"value" 字段 + :return: 字典(key=signal名称,value=对应{x,y,value}格式的列表); + 若需合并所有signal为单列表,可取消注释对应逻辑 + """ + # 步骤1:按signal字段分组 + signal_groups = defaultdict(list) + for item in raw_data: + signal_groups[item["signal"]].append(item) + + # 步骤2:处理每个分组,构造目标格式数据 + chart_data = {} + for signal_name, items in signal_groups.items(): + # 按time字段排序(保证时间轴顺序) + def sort_by_time(item): + return datetime.strptime(item["time"], "%Y-%m-%d %H:%M:%S.%f") + + sorted_items = sorted(items, key=sort_by_time) + + # 构造 {x: 时间, y: 数值, value: 数值} 格式的列表 + signal_item_list = [] + for item in sorted_items: + val = float(item["value"]) # 确保数值类型为浮点数 + signal_item_list.append({ + "x": item["time"], # x轴:时间字符串(对应示例中的"销量4"类标签) + "y": item['valueExplanation'], # y轴:原始value数值 + "value": val # value字段:与y轴数值一致(匹配示例格式) + }) + + # ========== 新增逻辑开始 ========== + # 获取排序后第一条原始数据 + first_raw_item = sorted_items[0] + # 判断is_pre_value_needed是否非空(处理空字符串、None、"NULL"等情况) + is_needed = first_raw_item.get("is_pre_value_needed", "") + if is_needed and is_needed.strip() and is_needed != "NULL": + try: + # 提取pre相关值并转换类型 + pre_val = float(first_raw_item["pre_value"]) + pre_explanation = first_raw_item["pre_valueExplanation"] + first_time = first_raw_item["time"] # 在第一条数据的时间基础上减10秒 + first_time_dt = datetime.strptime(first_time, "%Y-%m-%d %H:%M:%S.%f") + pre_time_dt = first_time_dt - timedelta(seconds=10) + pre_time_str = pre_time_dt.strftime("%Y-%m-%d %H:%M:%S.%f")[:-3] + # 构造前置数据项 + pre_item = { + "x": '', # x轴:第一条数据的时间 + "y": pre_explanation, # y轴:pre_value对应的说明 + "value": pre_val, # value字段:pre_value的数值 + "show":1 + } + + # 插入到列表最前面 + signal_item_list.insert(0, pre_item) + except KeyError as e: + print(f"警告:第一条数据缺少{e}字段,跳过前置数据插入") + except ValueError as e: + print(f"警告:pre_value转换浮点数失败({e}),跳过前置数据插入") + # ========== 新增逻辑结束 ========== + + # 按signal名称存储结果 + chart_data[signal_name] = signal_item_list + + return chart_data + + +def match_meaning(singla_name,value): + import os + current_dir = os.path.dirname(os.path.abspath(__file__)) + json_path = os.path.join(current_dir, "singal_value.json") + with open(json_path, "r", encoding="utf-8") as f: + mean_data = json.load(f) + + singla=singla_name.split('.')[-1] + meaning_state=mean_data.get(singla,None) + if meaning_state: + return meaning_state[value] if meaning_state[value] else '' + else: + return '' + + diff --git a/backend/app/blueprints/incident_gen6/singal_value.json b/backend/app/blueprints/incident_gen6/singal_value.json new file mode 100644 index 0000000..5bbdbe9 --- /dev/null +++ b/backend/app/blueprints/incident_gen6/singal_value.json @@ -0,0 +1,164 @@ +{ + "l2p_function_state": { + "0.0": "kOff", + "1.0": "kStandby", + "2.0": "kPassive", + "3.0": "kActive", + "4.0": "kOverrule", + "5.0": "kError" + }, + "mmt_l2pp_function_state": { + "0.0": "Off", + "1.0": "Deactivated", + "2.0": "Preselected", + "3.0": "Active", + "4.0": "Overrule", + "5.0": "Error", + "6.0": "Unknown" + }, + "adas_cua_funcroadclass_st3": { + "0.0": "Unknown", + "1.0": "Freeway", + "2.0": "MainStreet/CitySpeedway", + "3.0": "NationalRoad", + "4.0": "ProvinceRoad/CountyRoad", + "5.0": "MainRoad", + "6.0": "SecondaryRoad/Commonroad/RuralRoad/InCountyRoad/Pathway", + "7.0": "N/A" + }, + "l2p_deactivation_reason": { + "0.0": "kIdle", + "1.0": "kDeactivatedByUser", + "2.0": "kOutOfODD", + "3.0": "kTollStation", + "4.0": "kRouteEnd", + "5.0": "kHeavyRain", + "6.0": "kError", + "7.0": "kOverSpeed", + "8.0": "kOther" + }, + "hoswd_handson_stat_master": { + "0.0": "NOT_TOUCH", + "1.0": "TOUCH", + "2.0": "SLIGHTLY_TOUCH", + "3.0": "GRASP", + "4.0": "DOUBLE_GRABBED", + "5.0": "SLIGHTLY_GRABBED", + "6.0": "SLIGHTLY_DOUBLE_GRABBED", + "7.0": "SNA" + }, + "das_dtr_ui_stat_st3": { + "0.0": "OFF", + "1.0": "PRESEL", + "2.0": "ACTV_SET_SPEED_CNTRL", + "3.0": "ACTV_SPEED_LMT_CNTRL", + "4.0": "ACTV_DSTNC_CNTRL_EGO_LNE", + "5.0": "ACTV_DSTNC_CNTRL_NGHBR_LNE", + "6.0": "ACTV_CRV_CTRL", + "7.0": "ACTV_DRVAWAY_RDY", + "8.0": "PASSIVE", + "9.0": "ACTV_NOT_POSSBL", + "13.0": "HIDDEN", + "14.0": "ERROR", + "15.0": "SNA" + }, + "fcw_warning": { + "0.0": "None", + "1.0": "LEVEL_1", + "2.0": "LEVEL_2", + "3.0": "LEVEL_3", + "4.0": "LEVEL_4", + "5.0": "COUNT", + "255.0": "FORCE32" + }, + "aeb_aeb_event_type": { + "0.0": "AEB_NONE", + "1.0": "AEB_PARTIAL", + "2.0": "AEB_FULL", + "3.0": "AEB_HOLD", + "4.0": "AEB_LIM", + "5.0": "AEB_EH", + "255.0": "AEB_FORCE32" + }, + "pt4_ptcoor_drvposn_stat": { + "0.0": "Unknown", + "1.0": "D", + "2.0": "N", + "3.0": "R", + "4.0": "P" + }, + "das_cms_acustwarn_rq_st3": { + "0.0": "NO_RQ", + "1.0": "RQ", + "3.0": "SNA" + }, + "das_turnind_rq": { + "0.0": "IDLE", + "1.0": "LEFT", + "2.0": "RIGHT" + }, + "brkpdl_stat": { + "0.0": "Pedal upstopped", + "1.0": "Pedal pressed", + "3.0": "not defined" + }, + "aas_actvas_rq": { + "0.0": "IDLE", + "1.0": "NOT_ON_ROAD", + "2.0": "DROW_LONG", + "3.0": "MCRSLP_DSTRCT", + "4.0": "SLP_UNRSP_DRIVER", + "7.0": "SNA" + }, + "aeb_state": { + "0.0": "kStartUp", + "1.0": "kAvailable", + "2.0": "kActive", + "3.0": "kActiveError", + "4.0": "kAborting", + "5.0": "kAbortingError", + "6.0": "kInitSilent", + "7.0": "kInit", + "8.0": "kBlocked", + "9.0": "kBlockedSilent", + "10.0": "kError", + "11.0": "kOff", + "12.0": "kOffError", + "13.0": "kNotAvailable", + "14.0": "kCodingError" + }, + "mpic_d_gaze_roi_idx": { + "0.0": "NO_GAZE", + "1.0": "ROI_01", + "2.0": "ROI_02", + "3.0": "ROI_03", + "4.0": "ROI_04", + "5.0": "ROI_05", + "6.0": "ROI_06", + "7.0": "ROI_07", + "8.0": "ROI_08", + "9.0": "ROI_09", + "10.0": "ROI_10", + "11.0": "ROI_11", + "12.0": "ROI_12", + "13.0": "ROI_13", + "14.0": "ROI_14", + "15.0": "ROI_15", + "16.0": "ROI_16", + "17.0": "ROI_17", + "18.0": "ROI_18", + "19.0": "ROI_19", + "20.0": "ROI_20", + "21.0": "ROI_21", + "22.0": "ROI_22", + "23.0": "ROI_23", + "24.0": "ROI_24", + "25.0": "ROI_25", + "26.0": "ROI_26", + "27.0": "ROI_27", + "28.0": "ROI_28", + "29.0": "ROI_29", + "30.0": "ROI_30", + "31.0": "SNA" + } +} \ No newline at end of file diff --git a/backend/app/blueprints/login/__init__.py b/backend/app/blueprints/login/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/app/blueprints/login/routes.py b/backend/app/blueprints/login/routes.py new file mode 100644 index 0000000..c29767f --- /dev/null +++ b/backend/app/blueprints/login/routes.py @@ -0,0 +1,144 @@ +from flask import Blueprint, current_app, redirect, request, jsonify +from sqlalchemy.exc import IntegrityError +from app.models import User, Role, UserRole # 导入模型类 +from app.utils import verify_password # 导入密码加密工具 +from app import db +from flask_jwt_extended import ( + create_access_token, + jwt_required, + get_jwt_identity, +) # 导入JWT相关工具 + +login_bp = Blueprint("login", __name__) + + +@login_bp.route("/login1", methods=["POST"]) +def login(): + # 初始化响应结构(避免未定义变量问题)F + response = {"code": 200, "message": "success"} + + # 1. 获取登录凭证 + data = request.get_json() + username = data.get("username") + password = data.get("password") + + # 2. 验证必填字段 + if not username or not password: + response["code"] = 400 + response["message"] = "用户名和密码不能为空" + return jsonify(response) + + # 3. 查询用户(包含状态验证) + user = User.query.filter_by( + username=username, status=1 + ).first() # 直接过滤启用状态的用户 + + # 4. 验证用户存在性和密码 + if not user or not verify_password( + user.password, password + ): # 注意:verify_password(加密密码, 明文密码) + response["code"] = 401 + response["message"] = "用户名或密码错误" + return jsonify(response) + + # 5. 生成JWT令牌 + access_token = create_access_token(identity=str(user.id)) + + # 6. 查询用户关联的角色(处理多角色情况) + # 方式:查询用户所有角色名称,返回数组 + roles = ( + db.session.query(Role.name) + .join(UserRole, Role.id == UserRole.role_id) + .filter(UserRole.user_id == user.id) # 关联当前登录用户 + .all() + ) + print("roles", roles) + # 提取角色名称到数组(如果没有角色,返回空数组) + role_list = [role.name for role in roles] if roles else [] + + # 7. 按指定格式包装结果 + result = { + "accessToken": access_token, + "id": user.id, + "username": user.username, + "nickname": user.username, # 假设nickname用username替代(如果表中有nickname字段可直接替换) + "avatar": user.avatar + or "https://gw.alipayobjects.com/zos/rmsportal/BiazfanxmamNRoxxVxka.png", # 默认为空时用默认头像 + "roles": role_list, # 角色数组(单角色时为['角色名'],多角色时为['角色1','角色2']) + } + + result = {"code": 200, "data": {"token": access_token}, "msg": "登录成功"} + + return jsonify(result) + + +@login_bp.route("/info", methods=["GET"]) +@jwt_required() # 要求登录状态(使用JWT验证) +def get_user_info(): + try: + # 获取当前登录用户的ID(假设使用JWT存储用户ID) + current_user_id = get_jwt_identity() + + # 查询数据库获取用户信息 + user = User.query.get(current_user_id) + if not user: + return jsonify({"code": 404, "msg": "用户不存在", "data": None}), 404 + + # 提取用户角色(假设Role模型有name字段存储角色名称) + roles = [role.name for role in user.roles] if user.roles else [] + + # 构造返回数据 + res = { + "code": 200, + "msg": "获取成功", + "data": { + "id": user.id, + "username": user.username, + "nickname": user.username, # 模型中没有nickname字段,暂用username代替 + "avatar": user.avatar + or "https://gw.alipayobjects.com/zos/rmsportal/BiazfanxmamNRoxxVxka.png", # 默认头像 + "roles": roles, + }, + } + return jsonify(res) + + except Exception as e: + # 异常处理 + return ( + jsonify({"code": 500, "msg": f"获取用户信息失败:{str(e)}", "data": None}), + 500, + ) + + +@login_bp.route("/get_record", methods=["GET"]) +def get_record_code(): + return jsonify({ + "code": 200, # 200表示成功 + "msg": "查询成功", + "data": current_app.config['HEADERS_SECRET_KEY'] # 调用模型自带的转字典方法 + }), 200 + + + +@login_bp.route("/login") +def authorization(): + """ + 授权入口。 + 将用户浏览器重定向到 SSO 服务器的授权页面。 + """ + # print("login123") + CLIENT_ID = current_app.config["CLIENT_ID"] + HOST = current_app.config["SS0_HOST"] + REDIRECT_URL = current_app.config["REDIRECT_URL"] + + # 1. 构造重定向到 SSO 授权页面的 URL + auth_url = ( + f"{HOST}v1/auth" + f"?response_type=code" + f"&client_id={CLIENT_ID}" + f"&scope=groups+openid+email+profile" + f"&redirect_uri={REDIRECT_URL}" + ) + # print(auth_url) + # 2. 执行重定向 + return redirect(auth_url) \ No newline at end of file diff --git a/backend/app/blueprints/oauth/__init__.py b/backend/app/blueprints/oauth/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/app/blueprints/oauth/routes.py b/backend/app/blueprints/oauth/routes.py new file mode 100644 index 0000000..4f6d8e4 --- /dev/null +++ b/backend/app/blueprints/oauth/routes.py @@ -0,0 +1,285 @@ +import base64 +from flask import ( + Blueprint, + make_response, + redirect, + request, + jsonify, + session, + current_app, +) +import jwt +import requests + + +oauth_bp = Blueprint("oauth", __name__) + + +# 客户端 ID +# CLIENT_ID = "A17336FC-A8D7-4CEA-8777-384BFEABABC1" +# BASE64_CLIENT = "Basic QTE3MzM2RkMtQThENy00Q0VBLTg3NzctMzg0QkZFQUJBQkMxOlU3LUMxQlpRZEw4VjVjLnp+cUFfNjRTTzJsOUYzSjBv" +# # SSO 授权服务器地址 +# # "https://ssoalpha.dvb.corpinter.net/" +# HOST = "https://ssoalpha.dvb.corpinter.net.cn/" +# # 授权成功后,SSO 服务器重定向回你的应用的地址 (必须与 SSO 服务器上配置的一致) +# REDIRECT_URL = "http://localhost:5221/report" +# # 用户登录成功后,最终重定向到的前端页面地址 +# DOMAIN = "http://localhost:3001" + +@oauth_bp.route("/error") +def error(): + """错误页面,用于显示认证失败信息""" + msg = request.args.get("msg", "Unknown error") + return f"Error: {msg}" + + +# @oauth_bp.route("/report") +@oauth_bp.route("/incident/authorized") +def authorized(): + """ + SSO 回调接口。 + 接收 SSO 服务器返回的授权码 (code),并使用它来兑换访问令牌 (access_token)。 + """ + CLIENT_ID = current_app.config["CLIENT_ID"] + CLIENT_PASSWORD = current_app.config["CLIENT_PASSWORD"] + HOST = current_app.config["SS0_HOST"] # 建议检查是否是笔误(SSO_HOST) + REDIRECT_URL = current_app.config["REDIRECT_URL"] + DOMAIN = current_app.config["DOMAIN"] + + code = request.args.get("code") + state = request.args.get("state", "/dashboard") # 默认值设为/dashboard + + if not code: + # return redirect(f"/error?msg=No authorization code provided.") + return redirect(f"/incident/error?msg=No authorization code provided.") + + # 1. 准备请求体,用授权码兑换 Token + body = { + "grant_type": "authorization_code", + "code": code, + "redirect_uri": REDIRECT_URL, + } + + auth_str = f"{CLIENT_ID}:{CLIENT_PASSWORD}" + # 2. 准备请求头 + headers = { + "Authorization": "Basic "+base64.b64encode(auth_str.encode("utf-8")).decode("utf-8"), + "Content-Type": "application/x-www-form-urlencoded", + } + + try: + # 3. 发送 POST 请求到 SSO 服务器的 Token 端点 + response = requests.post(f"{HOST}v1/token", data=body, headers=headers) + response.raise_for_status() + + response_data = response.json() + access_token = response_data.get("access_token") + + # print('access_token', access_token) + if not access_token: + # return redirect(f"/error?msg=Failed to obtain access token. Response: {response_data}") + return redirect(f"/incident/error?msg=Failed to obtain access token. Response: {response_data}") + + # 4. 解析 JWT Token + decoded_jwt = jwt.decode(access_token, options={"verify_signature": False}) + + # 5. 验证和清理 state 参数 (防止开放重定向攻击) + safe_state = "/callback" + print(f"Redirecting to: {DOMAIN}{safe_state}") + + # 6. 设置 Cookie + resp = make_response(redirect(f"{DOMAIN}{safe_state}")) + + # 关键:设置 Cookie 域名和属性 + # domain = ".localhost" # 让所有 localhost 子域都能读取 + domain = None # 上线时改为None + + # 设置 access_token + resp.set_cookie( + "authorization", + access_token, + max_age=3500, + path="/", + domain=domain, + httponly=False, # 前端需要读取 + samesite="Lax", # 允许跨站 + secure=False, + ) # 开发环境不需要HTTPS + + # 设置登录名 + login_name = decoded_jwt.get("sub", "") + resp.set_cookie( + "loginName", + login_name, + max_age=3500, + path="/", + domain=domain, + httponly=False, + samesite="Lax", + secure=False, + ) + + # 设置用户名 (直接存储,不需要Base64编码) + user_name = decoded_jwt.get("name", "") + print("user_name", user_name) + resp.set_cookie( + "userName", + user_name, # 直接存储,前端处理编码 + max_age=3500, + path="/", + domain=domain, + httponly=False, + samesite="Lax", + secure=False, + ) + + return resp + + except requests.exceptions.RequestException as e: + print(f"Error exchanging code for token: {e}") + return redirect(f"/error?msg=Error communicating with SSO server.") + except jwt.InvalidTokenError as e: + print(f"Error decoding JWT: {e}") + return redirect(f"/error?msg=Invalid access token received.") + + +@oauth_bp.route("/logout", methods=["GET", "POST"]) +def logout(): + """登出接口""" + # 清除 session + session.clear() + # print('logout66677') + # 返回标准的 JSON 响应 + return jsonify({"code": 200, "message": "退出登录成功", "data": {}}), 200 + + +@oauth_bp.route("/login") +def authorization(): + """ + 授权入口。 + 将用户浏览器重定向到 SSO 服务器的授权页面。 + """ + # print("login123") + CLIENT_ID = current_app.config["CLIENT_ID"] + HOST = current_app.config["SS0_HOST"] + REDIRECT_URL = current_app.config["REDIRECT_URL"] + + # 1. 构造重定向到 SSO 授权页面的 URL + auth_url = ( + f"{HOST}v1/auth" + f"?response_type=code" + f"&client_id={CLIENT_ID}" + f"&scope=groups+openid+email+profile" + f"&redirect_uri={REDIRECT_URL}" + ) + # print(auth_url) + # 2. 执行重定向 + return redirect(auth_url) + + +@oauth_bp.route("/report") +def authorized_test(): + """ + SSO 回调接口。 + 接收 SSO 服务器返回的授权码 (code),并使用它来兑换访问令牌 (access_token)。 + """ + CLIENT_ID = current_app.config["CLIENT_ID"] + CLIENT_PASSWORD = current_app.config["CLIENT_PASSWORD"] + HOST = current_app.config["SS0_HOST"] # 建议检查是否是笔误(SSO_HOST) + REDIRECT_URL = current_app.config["REDIRECT_URL"] + DOMAIN = current_app.config["DOMAIN"] + + code = request.args.get("code") + state = request.args.get("state", "/dashboard") # 默认值设为/dashboard + + if not code: + # return redirect(f"/error?msg=No authorization code provided.") + return redirect(f"/incident/error?msg=No authorization code provided.") + + # 1. 准备请求体,用授权码兑换 Token + body = { + "grant_type": "authorization_code", + "code": code, + "redirect_uri": REDIRECT_URL, + } + + auth_str = f"{CLIENT_ID}:{CLIENT_PASSWORD}" + # 2. 准备请求头 + headers = { + "Authorization": "Basic "+base64.b64encode(auth_str.encode("utf-8")).decode("utf-8"), + "Content-Type": "application/x-www-form-urlencoded", + } + + try: + # 3. 发送 POST 请求到 SSO 服务器的 Token 端点 + response = requests.post(f"{HOST}v1/token", data=body, headers=headers) + response.raise_for_status() + + response_data = response.json() + access_token = response_data.get("access_token") + + # print('access_token', access_token) + if not access_token: + # return redirect(f"/error?msg=Failed to obtain access token. Response: {response_data}") + return redirect(f"/incident/error?msg=Failed to obtain access token. Response: {response_data}") + + # 4. 解析 JWT Token + decoded_jwt = jwt.decode(access_token, options={"verify_signature": False}) + + # 5. 验证和清理 state 参数 (防止开放重定向攻击) + safe_state = "/callback" + print(f"Redirecting to: {DOMAIN}{safe_state}") + + # 6. 设置 Cookie + resp = make_response(redirect(f"{DOMAIN}{safe_state}")) + + # 关键:设置 Cookie 域名和属性 + domain = ".localhost" # 让所有 localhost 子域都能读取 + + # 设置 access_token + resp.set_cookie( + "authorization", + access_token, + max_age=3500, + path="/", + domain=domain, + httponly=False, # 前端需要读取 + samesite="Lax", # 允许跨站 + secure=False, + ) # 开发环境不需要HTTPS + + # 设置登录名 + login_name = decoded_jwt.get("sub", "") + resp.set_cookie( + "loginName", + login_name, + max_age=3500, + path="/", + domain=domain, + httponly=False, + samesite="Lax", + secure=False, + ) + + # 设置用户名 (直接存储,不需要Base64编码) + user_name = decoded_jwt.get("name", "") + print("user_name", user_name) + resp.set_cookie( + "userName", + user_name, # 直接存储,前端处理编码 + max_age=3500, + path="/", + domain=domain, + httponly=False, + samesite="Lax", + secure=False, + ) + + return resp + + except requests.exceptions.RequestException as e: + print(f"Error exchanging code for token: {e}") + return redirect(f"/error?msg=Error communicating with SSO server.") + except jwt.InvalidTokenError as e: + print(f"Error decoding JWT: {e}") + return redirect(f"/error?msg=Invalid access token received.") \ No newline at end of file diff --git a/backend/app/config.py b/backend/app/config.py new file mode 100644 index 0000000..2ef670b --- /dev/null +++ b/backend/app/config.py @@ -0,0 +1,89 @@ +import os +from dotenv import load_dotenv + +if os.getenv("FLASK_ENV") != "production": + load_dotenv() # 自动读取项目根目录的 .env 文件 + + +class Config: + """基础配置(所有环境共享的公共参数)""" + # 1. 敏感配置:强制从环境变量读取,无默认值(生产环境必须配置) + DATABRICKS_TOKEN = os.getenv("DATABRICKS_TOKEN") + JWT_SECRET_KEY = os.getenv("JWT_SECRET_KEY") # 移除弱默认值 + SECRET_KEY = os.getenv("SECRET_KEY") # 移除弱默认值 + + # 2. 公共非敏感配置 + DATABRICKS_HOST = ( + "https://adb-3035612432650494.2.databricks.azure.cn" # 固定地址可保留 + ) + REQUEST_TIMEOUT = 600 # 远程请求超时时间(秒) + JWT_ACCESS_TOKEN_EXPIRES = 14400 # 更直观的过期时间(替代 14400 秒) + SQLALCHEMY_TRACK_MODIFICATIONS = False # 统一关闭查询跟踪,减少性能损耗 + + # 3. 安全基础配置(所有环境共享) + SESSION_COOKIE_HTTPONLY = True # 禁止 JS 访问 Session Cookie(防 XSS) + SESSION_COOKIE_SAMESITE = "Strict" # 限制跨站携带 Cookie(防 CSRF) + + # 配置链接wedata的参数 + WEDATA_SECRET_ID='AKIDtfFdqqgYUflgdZaPFvOfkDd0EGEUkx0u' + WEDATA_SECRET_KEY='sBKH5WrESUJwLdljV6Yrysc9TaTAh3Gk' + WEDATA_ENGINE='gen6_prod_aiag' + WEDATA_DATABASE='dws' + + # 图片上传的配置 + UPLOAD_FOLDER = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'uploads') + MAX_CONTENT_LENGTH = 5 * 1024 * 1024 # 5MB(开发环境) + IMAGE_BASE_URL='http://127.0.0.1:5221' + + +class DevelopmentConfig(Config): + """开发环境配置(本地开发用,配置宽松)""" + SQLALCHEMY_DATABASE_URI = "mysql+pymysql://root:12345@localhost:3306/incid_db?charset=utf8mb4" # 开发库临时密码 + + GEN5_TABLE_NAME = os.getenv( + "GEN5_TABLE_NAME", + "hive_metastore.taf_level_two_plus.accident_report_raw_data" + ) + CLUSTER_ID = os.getenv("CLUSTER_ID", "1203-054146-wkjf95i0") + + CLIENT_ID = os.getenv("CLIENT_ID","A17336FC-A8D7-4CEA-8777-384BFEABABC1") + CLIENT_PASSWORD = os.getenv("CLIENT_PASSWORD","U7-C1BZQdL8V5c.z~qA_64SO2l9F3J0o") + SS0_HOST = os.getenv("SS0_HOST","https://ssoalpha.dvb.corpinter.net.cn/") + REDIRECT_URL = os.getenv("REDIRECT_URL","http://localhost:5221/report") + DOMAIN = os.getenv("DOMAIN","http://localhost:3001") + # 2. 开发模式开关 + DEBUG = True + TESTING = True + + # 3. 开发环境 Cookie 配置(无 HTTPS,禁用 secure) + SESSION_COOKIE_SECURE = False + + HEADERS_SECRET_KEY=os.getenv("HEADERS_SECRET_KEY","mbincid-server12") + +class ProductionConfig(Config): + """生产环境配置""" + SQLALCHEMY_DATABASE_URI = os.getenv("DATABASE_URL") + TABLE_NAME = os.getenv("TABLE_NAME") + CLUSTER_ID = os.getenv("CLUSTER_ID") + + CLIENT_ID = os.getenv("CLIENT_ID","A17336FC-A8D7-4CEA-8777-384BFEABABC1") + CLIENT_PASSWORD = os.getenv("CLIENT_PASSWORD","U7-C1BZQdL8V5c.z~qA_64SO2l9F3J0o") + SS0_HOST = os.getenv("SS0_HOST","https://ssoalpha.dvb.corpinter.net.cn/") + REDIRECT_URL = os.getenv("REDIRECT_URL","http://localhost:5221/report") + DOMAIN = os.getenv("DOMAIN","http://localhost:3001") + DEBUG = False # 禁用调试(关键!避免生产环境暴露敏感信息) + TESTING = False + + UPLOAD_FOLDER=os.getenv('UPLOAD_FOLDER','/app/uploads') + MAX_CONTENT_LENGTH=int(os.getenv('MAX_CONTENT_LENGTH', 5242880)) + IMAGE_BASE_URL=os.getenv('IMAGE_BASE_URL','http://127.0.0.1:5221') + + GEN5_TABLE_NAME = os.getenv( + "GEN5_TABLE_NAME", + "hive_metastore.taf_level_two_plus.accident_report_raw_data" + ) + + HEADERS_SECRET_KEY=os.getenv("HEADERS_SECRET_KEY","mbincid-server12") + +env = os.getenv("FLASK_ENV", "development") +config = {"development": DevelopmentConfig, "production": ProductionConfig}[env] diff --git a/backend/app/link_wedata_utils.py b/backend/app/link_wedata_utils.py new file mode 100644 index 0000000..b907e44 --- /dev/null +++ b/backend/app/link_wedata_utils.py @@ -0,0 +1,132 @@ +import traceback +import tdlc_connector +from tdlc_connector import constants + + +def query_tencent_cloud_data(config,start_time,end_time,vin): + try: + # 配置参数(替换为您的实际参数) + # config = { + # 'region': 'ap-shanghai', # 引擎所在地域 + # 'secret_id': 'AKIDtfFdqqgYUflgdZaPFvOfkDd0EGEUkx0u', + # 'secret_key': 'sBKH5WrESUJwLdljV6Yrysc9TaTAh3Gk', + # 'engine': 'gen6_prod_aiag', # 引擎名称 + # "database":"dws" + # } + # 建立连接 + conn = tdlc_connector.connect( + **config, + engine_type=constants.EngineType.SPARK, + result_style=constants.ResultStyles.LIST + ) + + cursor = conn.cursor() + + # 执行查询 + sql = f""" + SELECT * FROM gen6_incidents + WHERE incident_time BETWEEN '{start_time}' AND '{end_time}' + AND oneid = '{vin}' + """ + print(f"执行SQL: {sql}") + cursor.execute(sql) + + # 获取列名 + columns = [desc[0] for desc in cursor.description] # 使用cursor.description获取列名 [[5]] + + # 获取结果 + results = cursor.fetchall() + print(f"查询结果共 {len(results)} 条:") + + # 将结果转换为字典列表格式 + dict_results = [] + for i, row in enumerate(results, 1): + # 将每一行转换为字典,键为列名,值为对应的值 + row_dict = dict(zip(columns, row)) + dict_results.append(row_dict) + print(f"第{i}行: {row_dict}") + + return dict_results + + except Exception as e: + print(f"查询失败: {str(e)}") + raise + finally: + # 确保关闭连接 + if 'cursor' in locals(): + cursor.close() + if 'conn' in locals(): + conn.close() + + +def sync_query_tencent_cloud_data(config, sql, params, result_queue, task_id): + """ + 同步查询腾讯云TDLC数据(兼容单/多线程) + :param config: TDLC连接配置 + :param sql: 含%s占位符的SQL语句 + :param params: SQL参数列表(用于替换%s) + :param result_queue: 线程安全的结果队列(单线程传None) + :param task_id: 任务ID(区分不同查询,单线程可传任意字符串) + """ + conn = None + cursor = None + try: + # (原连接/执行SQL逻辑完全不变) + conn = tdlc_connector.connect( + **config, + engine_type=constants.EngineType.SPARK, + result_style=constants.ResultStyles.LIST + ) + cursor = conn.cursor() + # print(f"[线程-{task_id}] 执行SQL: {sql} | 参数: {params}") + cursor.execute(sql, params) + columns = [desc[0] for desc in cursor.description] if cursor.description else [] + results = cursor.fetchall() + dict_results = [dict(zip(columns, row)) for row in results] + + # ===== 仅新增:判断队列是否为空,兼容单线程 ===== + if result_queue is not None: + # 多线程:结果入队 + result_queue.put({ + "task_id": task_id, + "success": True, + "data": dict_results, + "error": None + }) + else: + # 单线程:直接返回结果(新增返回逻辑) + return { + "success": True, + "data": dict_results, + "error": None + } + + except Exception as e: + error_info = f"{str(e)}\n{traceback.format_exc()}" + print(f"[线程-{task_id}] 查询失败: {error_info}") + # ===== 同样新增:队列空判断 ===== + if result_queue is not None: + result_queue.put({ + "task_id": task_id, + "success": False, + "data": None, + "error": error_info + }) + else: + return { + "success": False, + "data": None, + "error": error_info + } + finally: + # (原关闭连接逻辑完全不变) + if cursor: + try: + cursor.close() + except Exception as e: + print(f"[线程-{task_id}] 关闭游标失败: {str(e)}") + if conn: + try: + conn.close() + except Exception as e: + print(f"[线程-{task_id}] 关闭连接失败: {str(e)}") \ No newline at end of file diff --git a/backend/app/models.py b/backend/app/models.py new file mode 100644 index 0000000..72db6f3 --- /dev/null +++ b/backend/app/models.py @@ -0,0 +1,590 @@ +from datetime import datetime +import enum + +from sqlalchemy import ( + BIGINT, + INTEGER, + JSON, + Column, + DateTime, + Enum, + ForeignKey, + Index, + String, + Text, + func, +) +from app import db + + +class User(db.Model): + __tablename__ = "users" + + id = db.Column(db.Integer, primary_key=True, autoincrement=True) + username = db.Column(db.String(50), unique=True, nullable=False) + password = db.Column(db.String(255), nullable=False) + status = db.Column(db.Integer, default=1, comment="用户状态:1-正常,0-禁用") + created_at = db.Column(db.DateTime, default=datetime.now, comment="创建时间") + updated_at = db.Column( + db.DateTime, default=datetime.now, onupdate=datetime.now, comment="更新时间" + ) + email = db.Column(db.String(255), nullable=True, comment="邮箱") + avatar = db.Column(db.String(255), nullable=True, comment="头像(通常存储图片URL)") + region = db.Column(db.String(255), nullable=True, comment="国家地区") + phone = db.Column(db.String(255), nullable=True, comment="电话") + brief = db.Column(db.String(255), nullable=True, comment="个人简介") + third_party_account = db.Column( + db.String(255), nullable=True, comment="第三方账号(如微信、QQ等)" + ) + position = db.Column(db.String(255), nullable=True, comment="职务") + department = db.Column(db.String(255), nullable=True, comment="部门") + label = db.Column( + db.String(255), nullable=True, comment="个人标签(多个标签可逗号分隔)" + ) + + # 自引用外键 + created_by = db.Column(db.Integer, db.ForeignKey("users.id")) + updated_by = db.Column(db.Integer, db.ForeignKey("users.id")) + + # 关系定义 + creator = db.relationship( + "User", foreign_keys=[created_by], remote_side=[id], backref="created_users" + ) + updater = db.relationship( + "User", foreign_keys=[updated_by], remote_side=[id], backref="updated_users" + ) + + # 关联关系 + roles = db.relationship( + "Role", + secondary="user_roles", + back_populates="users", + foreign_keys="[UserRole.user_id, UserRole.role_id]", + ) # 明确指定外键) + created_roles = db.relationship( + "Role", backref="creator", foreign_keys="Role.created_by" + ) + updated_roles = db.relationship( + "Role", backref="updater", foreign_keys="Role.updated_by" + ) + + def __repr__(self): + return f"" + + +class Role(db.Model): + __tablename__ = "roles" + + id = db.Column(db.Integer, primary_key=True, autoincrement=True) + name = db.Column(db.String(50), unique=True, nullable=False, comment="角色名称") + description = db.Column(db.String(255), comment="角色描述") + status = db.Column(db.Integer, default=1, comment="状态:1-启用,0-禁用") + created_at = db.Column(db.DateTime, default=datetime.now) + updated_at = db.Column(db.DateTime, default=datetime.now, onupdate=datetime.now) + + # 外键字段 + created_by = db.Column(db.Integer, db.ForeignKey("users.id")) + updated_by = db.Column(db.Integer, db.ForeignKey("users.id")) + + # 关系定义 + users = db.relationship( + "User", + secondary="user_roles", + back_populates="roles", + foreign_keys="[UserRole.role_id, UserRole.user_id]", + ) + + def __repr__(self): + return f"" + + +class UserRole(db.Model): + __tablename__ = "user_roles" + + user_id = db.Column(db.Integer, db.ForeignKey("users.id"), primary_key=True) + role_id = db.Column(db.Integer, db.ForeignKey("roles.id"), primary_key=True) + created_at = db.Column(db.DateTime, default=datetime.now) + created_by = db.Column(db.Integer, db.ForeignKey("users.id")) + + # 关系定义 + user = db.relationship("User", foreign_keys=[user_id], backref="role_assignments") + role = db.relationship("Role", foreign_keys=[role_id], backref="user_assignments") + creator_rel = db.relationship( + "User", foreign_keys=[created_by], backref="created_assignments" + ) + + def __repr__(self): + return f"" + + +class AccidList(db.Model): + """事故工单列表模型类(对应 accid_list 表)""" + + __tablename__ = "accid_list" # 对应 MySQL 表名 + __table_args__ = ( + # 修正:使用 db.Index(和 OperationHistory 模型一致),移除注释避免兼容问题 + db.Index("idx_ticket_id", "ticket_id"), + db.Index("idx_creator", "creator"), + db.Index("idx_create_time", "create_time"), + db.Index("idx_carline", "carline"), + db.Index("idx_affects_versions", "affects_versions"), + db.Index("idx_components", "components"), + db.Index("idx_labels", "labels"), + db.Index("idx_fix_versions", "fix_versions"), + db.Index("idx_accident_level", "accident_level"), + db.Index("idx_assignee_name", "assignee_name"), + # 表级属性(参考 Fst 模型的 collation 写法) + { + "mysql_charset": "utf8mb4", + "mysql_collate": "utf8mb4_unicode_ci", + "mysql_engine": "InnoDB", + "mysql_row_format": "DYNAMIC", + }, + ) + + # 核心修正:所有字段使用 db. 前缀(和 User 模型一致) + id = db.Column( + db.Integer, primary_key=True, autoincrement=True, comment="主键ID,自增" + ) + ticket_id = db.Column(db.String(50), nullable=False, comment="工单ID") + model = db.Column(db.String(100), nullable=True, default=None, comment="型号") + vin = db.Column(db.String(50), nullable=False, comment="车辆识别码(VIN)") + creator = db.Column( + db.String(50), nullable=False, default="", comment="创建人(用户名,如ZHANMEN)" + ) + create_time = db.Column(db.DateTime, nullable=False, comment="工单新建时间") + occur_datetime = db.Column(db.DateTime, nullable=False, comment="问题发生时间") + case_description = db.Column(db.Text, nullable=False, comment="Case描述") + fo_solution = db.Column(db.Text, nullable=False, comment="Fo解答") + category = db.Column(db.String(100), nullable=False, default="", comment="分类") + keywords = db.Column( + db.String(200), nullable=False, default="", comment="关键词(多个用逗号分隔)" + ) + handle_status = db.Column( + db.String(20), + nullable=True, + default="已完成", + comment="处理状态:已完成/未完成", + ) + # 修正:时间字段默认值用 db.func.current_timestamp()(和 BagFile 模型一致) + create_at = db.Column( + db.DateTime, + nullable=True, + default=func.current_timestamp(), + comment="记录插入数据库时间", + ) + update_at = db.Column( + db.DateTime, + nullable=True, + default=func.current_timestamp(), + onupdate=func.current_timestamp(), + comment="记录最后更新时间", + ) + bmbs_name = db.Column( + db.String(50), nullable=True, default="", comment="BMBS联系人" + ) + # 修正:Enum 默认值错误(原 default='' 改为 'P1'),使用 db.Enum + accident_level = db.Column( + db.Enum("P1", "P2", "P3"), nullable=True, default="P1", comment="事故评级" + ) + rdca_reporter = db.Column( + db.String(50), nullable=True, default="", comment="RDCA报告人" + ) + carline = db.Column( + db.String(100), + nullable=True, + default=None, + comment="车系(关联字典表dict_code=carline)", + ) + software_version = db.Column( + db.String(50), nullable=True, default="", comment="软件版本" + ) + labels = db.Column( + db.String(100), + nullable=True, + default=None, + comment="事故类型标签(关联字典表dict_code=labels)", + ) + attachment_url = db.Column( + db.String(255), nullable=True, default="", comment="附件地址(多个用逗号分隔)" + ) + assignee_name = db.Column( + db.String(50), nullable=True, default="", comment="经办人(关联字典表/用户表)" + ) + affects_versions = db.Column( + db.String(100), + nullable=True, + default=None, + comment="受影响的版本(关联字典表dict_code=affects_versions)", + ) + components = db.Column( + db.String(100), + nullable=True, + default=None, + comment="零部件/组件(关联字典表dict_code=components)", + ) + fix_versions = db.Column( + db.String(100), + nullable=True, + default=None, + comment="修复方案对应的版本(关联字典表dict_code=fix_versions)", + ) + subtasks = db.Column( + db.String(200), nullable=False, default="", comment="子任务(多个用逗号分隔)" + ) + linked_work_items = db.Column( + db.String(200), + nullable=False, + default="", + comment="关联的工作项(格式:类型:ID,类型:ID)", + ) + descriptions = db.Column( + db.String(255), + nullable=False, + default="", + comment="补充描述(区别于case_description)", + ) + mviz_link = db.Column( + db.String(255), nullable=False, default="", comment="mviz的链接" + ) + system_function = db.Column( + db.String(255), nullable=False, default="", comment="system_function字段" + ) + image_ids = db.Column( + db.String(255), + nullable=False, + default="", + comment="关联图片ID串,逗号分隔(如:1,2,3)", + ) + + def __repr__(self): + return f"" + + def to_dict(self): + """转为字典,适配接口返回(参考 DictType 的 to_dict 方法)""" + return { + "id": self.id, + "ticket_id": self.ticket_id, + "model": self.model, + "vin": self.vin, + "creator": self.creator, + "create_time": ( + self.create_time.strftime("%Y-%m-%d %H:%M:%S") + if self.create_time + else None + ), + "occur_datetime": ( + self.occur_datetime.strftime("%Y-%m-%d %H:%M:%S") + if self.occur_datetime + else None + ), + "case_description": self.case_description, + "fo_solution": self.fo_solution, + "category": self.category, + "keywords": self.keywords, + "handle_status": self.handle_status, + "create_at": ( + self.create_at.strftime("%Y-%m-%d %H:%M:%S") if self.create_at else None + ), + "update_at": ( + self.update_at.strftime("%Y-%m-%d %H:%M:%S") if self.update_at else None + ), + "bmbs_name": self.bmbs_name, + "accident_level": self.accident_level, + "rdca_reporter": self.rdca_reporter, + "carline": self.carline, + "software_version": self.software_version, + "labels": self.labels, + "attachment_url": self.attachment_url, + "assignee_name": self.assignee_name, + "affects_versions": self.affects_versions, + "components": self.components, + "fix_versions": self.fix_versions, + "subtasks": self.subtasks, + "linked_work_items": self.linked_work_items, + "descriptions": self.descriptions, + "mviz_link": self.mviz_link, + "system_function":self.system_function, + "image_ids":self.image_ids + } + + +class DictType(db.Model): + """字典类型表模型类(对应 dict_type 表)""" + + __tablename__ = "dict_type" # 匹配 MySQL 表名 + __table_args__ = ( + # 修正:使用 db.UniqueConstraint(参考 RuleVersions 模型) + db.UniqueConstraint( + "dict_code", name="uk_dict_code", comment="字典编码唯一(对应唯一字段)" + ), + # 表级属性(对齐项目规范) + { + "mysql_charset": "utf8mb4", + "mysql_collate": "utf8mb4_unicode_ci", + "mysql_engine": "InnoDB", + "mysql_row_format": "Dynamic", + "comment": "字典类型表(管理需要下拉的字段)", + }, + ) + + # 修正:所有字段使用 db. 前缀,类型改为 db.Integer(和 User 模型一致) + id = db.Column(db.Integer, primary_key=True, autoincrement=True, comment="主键ID") + dict_code = db.Column( + db.String(50), + nullable=False, + comment="字典编码(对应accid_list的字段名,如carline、labels)", + ) + dict_name = db.Column( + db.String(50), + nullable=False, + comment="字典名称(字段中文名称,如车系、事故类型)", + ) + remark = db.Column( + db.String(200), + nullable=True, + default="", + comment="备注(如“事故工单-车系下拉选项”)", + ) + status = db.Column( + db.Integer, nullable=False, default=1, comment="状态:1-启用,0-禁用" + ) + create_time = db.Column( + db.DateTime, nullable=True, default=func.current_timestamp(), comment="创建时间" + ) + update_time = db.Column( + db.DateTime, + nullable=True, + default=func.current_timestamp(), + onupdate=func.current_timestamp(), + comment="更新时间", + ) + + def __repr__(self): + return f"" + + def to_dict(self): + """将模型对象转为字典,便于接口返回数据""" + return { + "id": self.id, + "dict_code": self.dict_code, + "dict_name": self.dict_name, + "remark": self.remark, + "status": self.status, + "create_time": ( + self.create_time.strftime("%Y-%m-%d %H:%M:%S") + if self.create_time + else None + ), + "update_time": ( + self.update_time.strftime("%Y-%m-%d %H:%M:%S") + if self.update_time + else None + ), + } + + +class DictItem(db.Model): + """字典项表模型类(对应 dict_item 表)""" + + __tablename__ = "dict_item" # 严格匹配 MySQL 表名 + __table_args__ = ( + # 修正:使用 db.Index(对齐 OperationHistory 模型) + db.Index("idx_dict_id", "dict_id"), + db.Index("idx_item_value", "item_value"), + # 表级属性(对齐项目规范) + { + "mysql_charset": "utf8mb4", + "mysql_collate": "utf8mb4_unicode_ci", + "mysql_engine": "InnoDB", + "mysql_row_format": "Dynamic", + "comment": "字典项表(管理每个字段的具体下拉选项)", + }, + ) + + # 修正:所有字段使用 db. 前缀,类型改为 db.Integer(和 User 模型一致) + id = db.Column(db.Integer, primary_key=True, autoincrement=True, comment="主键ID") + # 修正:外键使用 db.ForeignKey(参考 BagFile 模型) + dict_id = db.Column( + db.Integer, + db.ForeignKey("dict_type.id"), + nullable=False, + comment="关联字典类型表的ID", + ) + item_value = db.Column( + db.String(100), + nullable=False, + comment="选项值(存储到accid_list的实际值,如“大众帕萨特”“P1”)", + ) + item_label = db.Column( + db.String(100), + nullable=False, + comment="选项标签(前端显示的文本,如“大众帕萨特(车系)”)", + ) + sort = db.Column( + db.Integer, + nullable=True, + default=0, + comment="排序号(前端下拉框显示顺序,数字越小越靠前)", + ) + status = db.Column( + db.Integer, + nullable=False, + default=1, + comment="状态:1-启用,0-禁用(禁用后前端不显示)", + ) + remark = db.Column( + db.String(200), + nullable=True, + default="", + comment="备注(如“2025款帕萨特专属”)", + ) + create_time = db.Column( + db.DateTime, nullable=True, default=func.current_timestamp(), comment="创建时间" + ) + update_time = db.Column( + db.DateTime, + nullable=True, + default=func.current_timestamp(), + onupdate=func.current_timestamp(), + comment="更新时间", + ) + + # 修正:关系使用 db.relationship + db.backref(参考 User 模型) + dict_type = db.relationship( + "DictType", backref=db.backref("dict_items", lazy="joined"), lazy="joined" + ) + + def __repr__(self): + return f"" + + def to_dict(self): + """将模型对象转为字典,适配接口返回数据""" + return { + "id": self.id, + "dict_id": self.dict_id, + "item_value": self.item_value, + "item_label": self.item_label, + "sort": self.sort, + "status": self.status, + "remark": self.remark, + "create_time": ( + self.create_time.strftime("%Y-%m-%d %H:%M:%S") + if self.create_time + else None + ), + "update_time": ( + self.update_time.strftime("%Y-%m-%d %H:%M:%S") + if self.update_time + else None + ), + # 关联返回字典类型信息(可选,提升接口易用性) + "dict_code": self.dict_type.dict_code if self.dict_type else None, + "dict_name": self.dict_type.dict_name if self.dict_type else None, + } + + +class FileUpload(db.Model): + """通用文件上传元信息表模型类(对应 file_uploads 表)""" + + __tablename__ = "file_uploads" # 对应 MySQL 表名 + __table_args__ = ( + # 索引定义(与建表语句完全一致) + db.Index("idx_business_type_id", "business_type", "business_id"), + db.Index("idx_create_time", "create_time"), + db.Index("idx_status", "status"), + # 表级属性(与 AccidList 模型格式一致) + { + "mysql_charset": "utf8mb4", + "mysql_collate": "utf8mb4_unicode_ci", + "mysql_engine": "InnoDB", + "mysql_row_format": "DYNAMIC", + }, + ) + + # 核心修正:全用 db.Integer,通过 info 指定 MySQL 底层类型(无参数报错) + id = db.Column( + db.Integer, # 模型层用 int 兼容 + primary_key=True, + autoincrement=True, + info={'mysql_type': 'BIGINT UNSIGNED'}, # 数据库底层仍是 BIGINT UNSIGNED + comment="主键(自增数值ID)", + ) + file_name = db.Column( + db.String(255), nullable=False, comment="原始文件名(如:事故图片1.jpg)" + ) + file_alias = db.Column( + db.String(255), + nullable=False, + comment="存储别名(避免重名,如:20260210_153950_89782.jpg)", + ) + file_path = db.Column( + db.String(512), + nullable=False, + comment="存储路径/访问URL(本地:/uploads/202602/xxx.jpg;OSS:https://xxx.oss-cn-beijing.aliyuncs.com/xxx.jpg)", + ) + file_size = db.Column( + db.Integer, # 模型层用 int 兼容 + nullable=False, + info={'mysql_type': 'BIGINT UNSIGNED'}, # 数据库底层 BIGINT UNSIGNED + comment="文件大小(字节)" + ) + file_type = db.Column( + db.String(50), + nullable=False, + comment="文件MIME类型(如:image/jpeg、image/png)", + ) + business_type = db.Column( + db.String(50), + nullable=True, + default=None, + comment="关联业务类型(如:case=案例、user=用户头像)", + ) + business_id = db.Column( + db.Integer, # 模型层用 int 兼容 + nullable=True, + default=None, + info={'mysql_type': 'BIGINT UNSIGNED'}, # 数据库底层 BIGINT UNSIGNED + comment="关联业务主键(案例ID/用户ID等,初始为NULL)", + ) + create_time = db.Column( + db.DateTime, + nullable=False, + default=func.current_timestamp(), # 对应 DEFAULT CURRENT_TIMESTAMP + comment="上传时间", + ) + create_by = db.Column( + db.String(50), nullable=True, default=None, comment="上传人(用户ID/用户名)" + ) + status = db.Column( + db.Integer, # 模型层用 int 兼容 + nullable=False, + default=1, + info={'mysql_type': 'TINYINT(3) UNSIGNED'}, # 数据库底层 TINYINT(3) UNSIGNED + comment="状态:1=有效,0=逻辑删除", + ) + + def __repr__(self): + """模型字符串表示,便于调试""" + return f"" + + def to_dict(self): + """转为字典,适配接口返回(与 AccidList 模型风格一致)""" + return { + "id": self.id, + "file_name": self.file_name, + "file_alias": self.file_alias, + "file_path": self.file_path, + "file_size": self.file_size, + "file_type": self.file_type, + "business_type": self.business_type, + "business_id": self.business_id, + "create_time": ( + self.create_time.strftime("%Y-%m-%d %H:%M:%S") + if self.create_time + else None + ), + "create_by": self.create_by, + "status": self.status, + "status_text": "有效" if self.status == 1 else "已删除", + } \ No newline at end of file diff --git a/backend/app/services/__init__.py b/backend/app/services/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/app/services/remote_service.py b/backend/app/services/remote_service.py new file mode 100644 index 0000000..2b7a873 --- /dev/null +++ b/backend/app/services/remote_service.py @@ -0,0 +1,128 @@ +from datetime import datetime, timezone +from flask import current_app +from databricks import sql + + +class DatabricksQuery: + def __init__(self): + """纯Python连接Databricks SQL,无JVM依赖""" + try: + # 读取配置(参数和原代码一致,无需修改) + self.host = current_app.config["DATABRICKS_HOST"] + self.token = current_app.config["DATABRICKS_TOKEN"] + self.cluster_id = current_app.config["CLUSTER_ID"] + + # 校验参数 + if not all([self.host, self.token, self.cluster_id]): + raise ValueError( + "必须配置DATABRICKS_HOST、DATABRICKS_TOKEN、CLUSTER_ID" + ) + + print("Databricks SQL 连接器初始化成功") + except Exception as e: + print(f"初始化失败: {e}") + raise + + # 复用原有参数校验逻辑 + @staticmethod + def _validate_table_name(table_name): + if not table_name or not isinstance(table_name, str): + raise ValueError(f"无效的表名: {table_name}") + if ";" in table_name: + raise ValueError(f"表名包含非法字符 ';': {table_name}") + parts = table_name.split(".") + if len(parts) != 3: + raise ValueError(f"表名格式应为 catalog.schema.table: {table_name}") + + @staticmethod + def _validate_vin(vin): + if vin is None: + return True + if not isinstance(vin, str): + raise ValueError(f"无效的 VIN: {vin} (必须是17位字母数字)") + return True + + def query_table( + self, table_name, vin=None, start_time=None, end_time=None,limit=None + ): + """纯Python查询表数据,无JVM依赖""" + try: + # 验证参数 + self._validate_table_name(table_name) + self._validate_vin(vin) + + # 构建SQL查询语句(替代原PySpark DataFrame操作) + select_fields = """ + Incident__Name AS incident_name, + Incident__description AS incident_description, + Meaning AS meaning, + Signal__Name As signal_name, + incident_time, + oneid, + speed, + int_value, + idc_tickcount_ms, + latitude, + longitude, + mux_data, + gps_heading, + float_value + """ + + sql_query = f"SELECT {select_fields} FROM {table_name}" + where_conditions = [] + + # 拼接过滤条件 + if vin: + where_conditions.append(f"oneid = '{vin}'") + if start_time: + start_dt = self._parse_iso_time(start_time).isoformat() + where_conditions.append(f"incident_time >= '{start_dt}'") + if end_time: + end_dt = self._parse_iso_time(end_time).isoformat() + where_conditions.append(f"incident_time <= '{end_dt}'") + + # 拼接WHERE子句 + if where_conditions: + sql_query += " WHERE " + " AND ".join(where_conditions) + # 拼接LIMIT + if limit is not None: + sql_query += f" LIMIT {limit}" + + # sql_query="select * from hive_metastore.taf_level_two_plus.accident_report_data WHERE oneid = 'LE4LG4GB6SL256937' limit 1" + print(f"查询sql:{sql_query}") + + # 执行SQL(纯Python,无JVM) + with sql.connect( + server_hostname=self.host, + http_path=f"sql/protocolv1/o/3035612432650494/{self.cluster_id}", # 注意路径格式 + access_token=self.token, + ) as connection: + with connection.cursor() as cursor: + cursor.execute(sql_query) + # 获取列名和数据,转换为字典格式(和原代码返回格式一致) + columns = [desc[0] for desc in cursor.description] + results = [] + for row in cursor.fetchall(): + results.append(dict(zip(columns, row))) + return results + + except Exception as e: + print(f"查询失败: {str(e)}") + raise + + # 复用原有时间解析逻辑 + def _parse_iso_time(self, time_str): + try: + if time_str.endswith("Z"): + time_str = time_str[:-1] + "+00:00" + dt = datetime.fromisoformat(time_str) + if dt.tzinfo is None: + dt = dt.replace(tzinfo=timezone.utc) + return dt + except Exception as e: + raise ValueError(f"无效的时间格式 '{time_str}': {str(e)}") + + def stop(self): + # 纯Python连接器无需关闭SparkSession,此处保留方法以兼容原有调用逻辑 + print("Databricks SQL 连接已释放") diff --git a/backend/app/utils.py b/backend/app/utils.py new file mode 100644 index 0000000..458f54f --- /dev/null +++ b/backend/app/utils.py @@ -0,0 +1,115 @@ +import base64 +from datetime import datetime, timezone +import math +from zoneinfo import ZoneInfo +from flask import current_app, json +import numpy as np +from werkzeug.security import generate_password_hash, check_password_hash +import threading # 用于线程安全 +from Crypto.Cipher import AES +from Crypto.Util.Padding import unpad + + +# --- 全局状态管理 --- +# 使用一个简单的标志和锁来确保线程安全 +cluster_ensured_running = False +cluster_check_lock = threading.Lock() + + +def encrypt_password(raw_password: str) -> str: + """加密密码(使用pbkdf2:sha256算法)""" + return generate_password_hash(raw_password, method="pbkdf2:sha256", salt_length=16) + + +def verify_password(encrypted_password: str, raw_password: str) -> bool: + """验证密码""" + return check_password_hash(encrypted_password, raw_password) + + +def convert_incident_time_format(data_list): + for item in data_list: + # 原始数据是Timestamp类型,直接获取 + original_ts = item["incident_time"] + print('original_ts',type(original_ts)) + # 1. 为Timestamp添加原时区(假设原时间是Asia/Shanghai时区,且原始Timestamp无时区) + # 注意:如果Timestamp已有时区,直接跳过localize,用tz_convert即可 + if original_ts.tz is None: # 检查是否已有时区 + original_tz_ts = original_ts.tz_localize(ZoneInfo("Asia/Shanghai")) + else: + original_tz_ts = original_ts # 已有时区则直接使用 + + # 2. 转换为UTC时区 + utc_ts = original_tz_ts.tz_convert(ZoneInfo("UTC")) + + # 3. 格式化输出目标格式(添加T、毫秒和时区标识) + target_str = utc_ts.strftime("%Y-%m-%dT%H:%M:%S") + ".000+0000" + + # 更新字段 + item["incident_time"] = target_str + + + # 处理NaN的值 + # processed_data = {} + for key, value in item.items(): + # 检查当前值是否为NaN(仅针对数值类型) + if isinstance(value, (int, float)): # 确保是数值类型 + # 判断是否为NaN(同时兼容math.nan和np.nan) + if math.isnan(value) or np.isnan(value): + item[key] = None + else: + item[key] = value + else: + # 非数值类型(如字符串、None等)直接保留 + item[key] = value + + return data_list + +# gen5的车码查询前替换为真实的车码 +def mask_vin(real_vin): + id_str = real_vin[-6:] + if not id_str.isdigit(): + print('The last six digits of vin:%s are not numbers!' % real_vin) + return real_vin + masked_id = '' + add = 0 + total = 0 + mapping = { + 73: 88, + 79: 89, + 81: 90, + } + for i in id_str: + total += int(i) + for i in id_str: + add += total + 2 + c = int(i) + 65 + add % 13 + if c in [73, 79, 81]: + c = mapping[c] + masked_id += chr(c) + + masked_vin = real_vin[:-6] + masked_id[::-1] + + return masked_vin + + +def decrypt_code(encrypted_data): + try: + raw_key=current_app.config['HEADERS_SECRET_KEY'] + key_bytes=raw_key.encode('utf-8')[:16] + if len(key_bytes)<16: + key_bytes=key_bytes.ljust(16,b"0") + + combined=base64.b64decode(encrypted_data) + iv_byte=combined[:16] + ct_byte=combined[16:] + + ciper=AES.new(key_bytes,AES.MODE_CBC,iv=iv_byte) + des_padd=ciper.decrypt(ct_byte) + + desrypt_res=unpad(des_padd,AES.block_size) + + return desrypt_res.decode('utf-8') + + except Exception as e: + print('解析失败') + return None \ No newline at end of file diff --git a/backend/entrypoint.sh b/backend/entrypoint.sh new file mode 100644 index 0000000..f8cfe93 --- /dev/null +++ b/backend/entrypoint.sh @@ -0,0 +1,58 @@ +#!/bin/bash +set -e # 出错立即退出 + +# 1. 验证关键配置 +echo "验证关键配置..." +[ -z "$DATABASE_URL" ] && echo "ERROR: 缺少 DATABASE_URL!" && exit 1 +[ -z "$DATABRICKS_HOST" ] && echo "ERROR: 缺少 DATABRICKS_HOST!" && exit 1 +[ -z "$DATABRICKS_TOKEN" ] && echo "ERROR: 缺少 DATABRICKS_TOKEN!" && exit 1 +[ -z "$DATABRICKS_CLUSTER_ID" ] && echo "ERROR: 缺少 DATABRICKS_CLUSTER_ID!" && exit 1 +[ -z "$JWT_SECRET_KEY" ] && echo "ERROR: 缺少 JWT_SECRET_KEY!" && exit 1 +[ -z "$SECRET_KEY" ] && echo "ERROR: 缺少 SECRET_KEY!" && exit 1 +echo "✅ 关键配置验证通过" + +# 2. 激活虚拟环境 +echo "激活虚拟环境..." +. /app/venv/bin/activate +echo "✅ 虚拟环境已激活" + +# 3. 创建databricks-connect配置目录 +echo "创建配置目录..." +mkdir -p /home/appuser/.databricks-connect +echo "✅ 配置目录创建完成" + +# 4. 生成配置文件(非交互式) +echo "生成databricks-connect配置文件..." +cat > /home/appuser/.databricks-connect/config << EOF +[DEFAULT] +host = $DATABRICKS_HOST +token = $DATABRICKS_TOKEN +cluster_id = $DATABRICKS_CLUSTER_ID +port = 15001 +accept_eula = yes +EOF +echo "✅ 配置文件生成完成" + +# 5. 设置必要的环境变量 +echo "设置环境变量..." +export SPARK_HOME="$(dirname $(which python))/../lib/python3.12/site-packages/pyspark" +export DATABRICKS_HOST="$DATABRICKS_HOST" +export DATABRICKS_TOKEN="$DATABRICKS_TOKEN" +export DATABRICKS_CLUSTER_ID="$DATABRICKS_CLUSTER_ID" +export DATABRICKS_PORT=15001 +export PATH="$PATH:/app/venv/bin" +echo "✅ 环境变量设置完成" +echo "SPARK_HOME=$SPARK_HOME" + +# 6. 验证配置 +echo "验证 databricks-connect 配置..." +if databricks-connect test; then + echo "✅ databricks-connect 配置验证成功" +else + echo "❌ databricks-connect 配置验证失败,但继续启动服务..." + # 这里不退出,因为有时测试会失败但实际连接是正常的 +fi + +# 7. 启动 Flask 服务 +echo "启动 Flask 服务..." +exec gunicorn --bind 0.0.0.0:5221 --workers 14 --timeout 600 "$FLASK_APP" \ No newline at end of file diff --git a/backend/init_db.py b/backend/init_db.py new file mode 100644 index 0000000..8b58e38 --- /dev/null +++ b/backend/init_db.py @@ -0,0 +1,20 @@ +"""初始化数据库:根据 app/models.py 中的模型自动创建全部表。 + +用法(在 backend 目录,已激活 .venv): + python init_db.py + +说明: +- 会连接 app/config.py 中当前环境(默认 development)配置的数据库。 +- MySQL 需先手动建库:CREATE DATABASE incid_db ...(见 schema.sql 第一行)。 +- 若使用 SQLite(见 README/说明),无需提前建库,运行本脚本即可生成表。 +""" +from app import create_app, db +import app.models # noqa: F401 确保所有模型注册到 metadata + +app = create_app() +with app.app_context(): + db.create_all() + tables = sorted(db.metadata.tables.keys()) + print("数据库初始化完成,已创建/校验以下表:") + for name in tables: + print(" -", name) diff --git a/backend/logs/app.log b/backend/logs/app.log new file mode 100644 index 0000000..e69de29 diff --git a/backend/prod.env b/backend/prod.env new file mode 100644 index 0000000..b9829fd --- /dev/null +++ b/backend/prod.env @@ -0,0 +1,32 @@ +# 集群配置 +DATABRICKS_TOKEN=dapi188523cfb1cf34ad5a605fd75c5c0d31 +CLUSTER_ID=1203-054146-wkjf95i0 +DATABRICKS_HOST=https://adb-3035612432650494.2.databricks.azure.cn + +# gen5 spark表的配置 +GEN5_TABLE_NAME=hive_metastore.taf_level_two_plus.accident_report_data + +# JWT配置 +JWT_SECRET_KEY=dev_mb_project_2025_xyz123 # 开发环境可随意,生产环境需复杂密钥 +SECRET_KEY=dev_mb_2025_abc789 + +# 数据库配置 +DATABASE_URL=mysql+pymysql://root:V2OuCHPL%40changeit@10.200.10.193:3306/incid_db?charset=utf8mb4 + +# oauth2配置 +CLIENT_ID=B7E86ADC-A8F7-4462-87FC-A04DFDF3C58F +CLIENT_PASSWORD=AWd408ETS_V~j-yt.763P1D9ovC25fbe + +SS0_HOST=https://ssoalpha.dvb.corpinter.net.cn/ +# 授权成功后,SSO 服务器重定向回你的应用的地址 (必须与 SSO 服务器上配置的一致) +REDIRECT_URL=http://150.158.236.152:5221/incident/authorized +# 用户登录成功后,最终重定向到的前端页面地址 +DOMAIN=http://150.158.236.152:5000 + +# 图片上传的配置 +UPLOAD_FOLDER=/app/uploads +MAX_CONTENT_LENGTH=5242880 +IMAGE_BASE_URL=http://150.158.236.152:5221 + +# 前端请求头的key +HEADERS_SECRET_KEY=mbincid-server12 \ No newline at end of file diff --git a/backend/requirements.txt b/backend/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..632be05dba70aaf7a756a97167c859043b54fc4c GIT binary patch literal 2262 zcmZ{lO;1{35QS&mq(23tfZ8s)=%QVinzXTrO9EWJEL;#SR{Zg8&ogs}d#xJs8e!(0 zbLPy)`}fbtmbS3ce%Zvf_DP>JJF$;Cr}p07+1Q3Ub6G1}>$9|-dtJz*t8-R+al2Ba zsSZ)Py5F^P_c+zx^V)CP@&Kd3nG0#F=pc2(XsvH6{RY3MBfFk%^!)@otYfhU^MiiJ zp3GrOl%dDL13YeD)NIzm8`#DU!ko*u)VG}#iZ`$aac=9;lPZC^72-G<& z$*-~wg&LZm2Nmr)!|Bl$e9)T+RFeo%%_c&}uI$!+iv1Vi2D3t_kvZHiU%ho>KkS=* z7FzVqN(zIMYyxMdY}YoE*F*?I+Y4dteq_{l-Y-3es@FoiBZHM!qSUvI6h%F13Km&k z*4j|Fnd}pNO2@0*2R?z79vd-UC`J<@wE5poU8!{?)@{7D_g+}^0ktkYVz=(k?9qjk zEET2ECh}bITt16zQ)FY1aCG2V+4 zv0?fu#m`*Zcc1UJz-Z@Osau0%z8$f(Q0rcp6OY~Q1F)ltY_gambc9c6xf9Pvj|$$I z@2g<<){Y`()GYcuw%%Cir7{~UYi6;~#wqmwxZXoAH+$w6IlLVu-W&E;qckeyu1pql z)tmPCl{t(0JQ#NOiN ICtlS2AIb?!6aWAK literal 0 HcmV?d00001 diff --git a/backend/run.py b/backend/run.py new file mode 100644 index 0000000..1129d89 --- /dev/null +++ b/backend/run.py @@ -0,0 +1,28 @@ +# run.py(仅用于开发测试) +import os + +from flask import current_app, send_from_directory +from app import create_app + + +# 开发环境配置(启用 DEBUG、自动重载等) +app = create_app() + +@app.route('/uploads/') +def serve_uploads(filename): + """静态资源路由:允许访问/uploads下的所有文件""" + return send_from_directory(current_app.config['UPLOAD_FOLDER'], filename) + + +if __name__ == "__main__": + # Flask 自带开发服务器:支持自动重载、调试日志 + app.run( + host="0.0.0.0", # 允许外部访问 + port=5221, # 端口(与 Gunicorn 配置一致,便于测试) + debug=True, # 开发模式:自动重载、显示错误详情 + use_reloader=True, # 代码修改后自动重启 + ) + + # app.run(host="0.0.0.0", port=5221, debug=False) + + diff --git a/backend/schema.sql b/backend/schema.sql new file mode 100644 index 0000000..1b69174 --- /dev/null +++ b/backend/schema.sql @@ -0,0 +1,144 @@ +-- 自动生成:incid_db 建库建表脚本 +CREATE DATABASE IF NOT EXISTS incid_db DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; +USE incid_db; + +CREATE TABLE accid_list ( + id INTEGER NOT NULL COMMENT '主键ID,自增' AUTO_INCREMENT, + ticket_id VARCHAR(50) NOT NULL COMMENT '工单ID', + model VARCHAR(100) COMMENT '型号', + vin VARCHAR(50) NOT NULL COMMENT '车辆识别码(VIN)', + creator VARCHAR(50) NOT NULL COMMENT '创建人(用户名,如ZHANMEN)', + create_time DATETIME NOT NULL COMMENT '工单新建时间', + occur_datetime DATETIME NOT NULL COMMENT '问题发生时间', + case_description TEXT NOT NULL COMMENT 'Case描述', + fo_solution TEXT NOT NULL COMMENT 'Fo解答', + category VARCHAR(100) NOT NULL COMMENT '分类', + keywords VARCHAR(200) NOT NULL COMMENT '关键词(多个用逗号分隔)', + handle_status VARCHAR(20) COMMENT '处理状态:已完成/未完成', + create_at DATETIME COMMENT '记录插入数据库时间', + update_at DATETIME COMMENT '记录最后更新时间', + bmbs_name VARCHAR(50) COMMENT 'BMBS联系人', + accident_level ENUM('P1','P2','P3') COMMENT '事故评级', + rdca_reporter VARCHAR(50) COMMENT 'RDCA报告人', + carline VARCHAR(100) COMMENT '车系(关联字典表dict_code=carline)', + software_version VARCHAR(50) COMMENT '软件版本', + labels VARCHAR(100) COMMENT '事故类型标签(关联字典表dict_code=labels)', + attachment_url VARCHAR(255) COMMENT '附件地址(多个用逗号分隔)', + assignee_name VARCHAR(50) COMMENT '经办人(关联字典表/用户表)', + affects_versions VARCHAR(100) COMMENT '受影响的版本(关联字典表dict_code=affects_versions)', + components VARCHAR(100) COMMENT '零部件/组件(关联字典表dict_code=components)', + fix_versions VARCHAR(100) COMMENT '修复方案对应的版本(关联字典表dict_code=fix_versions)', + subtasks VARCHAR(200) NOT NULL COMMENT '子任务(多个用逗号分隔)', + linked_work_items VARCHAR(200) NOT NULL COMMENT '关联的工作项(格式:类型:ID,类型:ID)', + descriptions VARCHAR(255) NOT NULL COMMENT '补充描述(区别于case_description)', + mviz_link VARCHAR(255) NOT NULL COMMENT 'mviz的链接', + system_function VARCHAR(255) NOT NULL COMMENT 'system_function字段', + image_ids VARCHAR(255) NOT NULL COMMENT '关联图片ID串,逗号分隔(如:1,2,3)', + PRIMARY KEY (id) +)CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC ENGINE=InnoDB COLLATE utf8mb4_unicode_ci; +CREATE INDEX idx_carline ON accid_list (carline); +CREATE INDEX idx_labels ON accid_list (labels); +CREATE INDEX idx_components ON accid_list (components); +CREATE INDEX idx_ticket_id ON accid_list (ticket_id); +CREATE INDEX idx_affects_versions ON accid_list (affects_versions); +CREATE INDEX idx_accident_level ON accid_list (accident_level); +CREATE INDEX idx_create_time ON accid_list (create_time); +CREATE INDEX idx_fix_versions ON accid_list (fix_versions); +CREATE INDEX idx_creator ON accid_list (creator); +CREATE INDEX idx_assignee_name ON accid_list (assignee_name); + +CREATE TABLE dict_type ( + id INTEGER NOT NULL COMMENT '主键ID' AUTO_INCREMENT, + dict_code VARCHAR(50) NOT NULL COMMENT '字典编码(对应accid_list的字段名,如carline、labels)', + dict_name VARCHAR(50) NOT NULL COMMENT '字典名称(字段中文名称,如车系、事故类型)', + remark VARCHAR(200) COMMENT '备注(如“事故工单-车系下拉选项”)', + status INTEGER NOT NULL COMMENT '状态:1-启用,0-禁用', + create_time DATETIME COMMENT '创建时间', + update_time DATETIME COMMENT '更新时间', + PRIMARY KEY (id), + CONSTRAINT uk_dict_code UNIQUE (dict_code) +)CHARSET=utf8mb4 ENGINE=InnoDB COMMENT='字典类型表(管理需要下拉的字段)' ROW_FORMAT=Dynamic COLLATE utf8mb4_unicode_ci; + +CREATE TABLE file_uploads ( + id INTEGER NOT NULL COMMENT '主键(自增数值ID)' AUTO_INCREMENT, + file_name VARCHAR(255) NOT NULL COMMENT '原始文件名(如:事故图片1.jpg)', + file_alias VARCHAR(255) NOT NULL COMMENT '存储别名(避免重名,如:20260210_153950_89782.jpg)', + file_path VARCHAR(512) NOT NULL COMMENT '存储路径/访问URL(本地:/uploads/202602/xxx.jpg;OSS:https://xxx.oss-cn-beijing.aliyuncs.com/xxx.jpg)', + file_size INTEGER NOT NULL COMMENT '文件大小(字节)', + file_type VARCHAR(50) NOT NULL COMMENT '文件MIME类型(如:image/jpeg、image/png)', + business_type VARCHAR(50) COMMENT '关联业务类型(如:case=案例、user=用户头像)', + business_id INTEGER COMMENT '关联业务主键(案例ID/用户ID等,初始为NULL)', + create_time DATETIME NOT NULL COMMENT '上传时间', + create_by VARCHAR(50) COMMENT '上传人(用户ID/用户名)', + status INTEGER NOT NULL COMMENT '状态:1=有效,0=逻辑删除', + PRIMARY KEY (id) +)CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC ENGINE=InnoDB COLLATE utf8mb4_unicode_ci; +CREATE INDEX idx_business_type_id ON file_uploads (business_type, business_id); +CREATE INDEX idx_create_time ON file_uploads (create_time); +CREATE INDEX idx_status ON file_uploads (status); + +CREATE TABLE users ( + id INTEGER NOT NULL AUTO_INCREMENT, + username VARCHAR(50) NOT NULL, + password VARCHAR(255) NOT NULL, + status INTEGER COMMENT '用户状态:1-正常,0-禁用', + created_at DATETIME COMMENT '创建时间', + updated_at DATETIME COMMENT '更新时间', + email VARCHAR(255) COMMENT '邮箱', + avatar VARCHAR(255) COMMENT '头像(通常存储图片URL)', + region VARCHAR(255) COMMENT '国家地区', + phone VARCHAR(255) COMMENT '电话', + brief VARCHAR(255) COMMENT '个人简介', + third_party_account VARCHAR(255) COMMENT '第三方账号(如微信、QQ等)', + position VARCHAR(255) COMMENT '职务', + department VARCHAR(255) COMMENT '部门', + label VARCHAR(255) COMMENT '个人标签(多个标签可逗号分隔)', + created_by INTEGER, + updated_by INTEGER, + PRIMARY KEY (id), + UNIQUE (username), + FOREIGN KEY(created_by) REFERENCES users (id), + FOREIGN KEY(updated_by) REFERENCES users (id) +); + +CREATE TABLE dict_item ( + id INTEGER NOT NULL COMMENT '主键ID' AUTO_INCREMENT, + dict_id INTEGER NOT NULL COMMENT '关联字典类型表的ID', + item_value VARCHAR(100) NOT NULL COMMENT '选项值(存储到accid_list的实际值,如“大众帕萨特”“P1”)', + item_label VARCHAR(100) NOT NULL COMMENT '选项标签(前端显示的文本,如“大众帕萨特(车系)”)', + sort INTEGER COMMENT '排序号(前端下拉框显示顺序,数字越小越靠前)', + status INTEGER NOT NULL COMMENT '状态:1-启用,0-禁用(禁用后前端不显示)', + remark VARCHAR(200) COMMENT '备注(如“2025款帕萨特专属”)', + create_time DATETIME COMMENT '创建时间', + update_time DATETIME COMMENT '更新时间', + PRIMARY KEY (id), + FOREIGN KEY(dict_id) REFERENCES dict_type (id) +)CHARSET=utf8mb4 ENGINE=InnoDB COMMENT='字典项表(管理每个字段的具体下拉选项)' ROW_FORMAT=Dynamic COLLATE utf8mb4_unicode_ci; +CREATE INDEX idx_item_value ON dict_item (item_value); +CREATE INDEX idx_dict_id ON dict_item (dict_id); + +CREATE TABLE roles ( + id INTEGER NOT NULL AUTO_INCREMENT, + name VARCHAR(50) NOT NULL COMMENT '角色名称', + description VARCHAR(255) COMMENT '角色描述', + status INTEGER COMMENT '状态:1-启用,0-禁用', + created_at DATETIME, + updated_at DATETIME, + created_by INTEGER, + updated_by INTEGER, + PRIMARY KEY (id), + UNIQUE (name), + FOREIGN KEY(created_by) REFERENCES users (id), + FOREIGN KEY(updated_by) REFERENCES users (id) +); + +CREATE TABLE user_roles ( + user_id INTEGER NOT NULL, + role_id INTEGER NOT NULL, + created_at DATETIME, + created_by INTEGER, + PRIMARY KEY (user_id, role_id), + FOREIGN KEY(user_id) REFERENCES users (id), + FOREIGN KEY(role_id) REFERENCES roles (id), + FOREIGN KEY(created_by) REFERENCES users (id) +); diff --git a/default.conf b/default.conf new file mode 100644 index 0000000..6757e5a --- /dev/null +++ b/default.conf @@ -0,0 +1,60 @@ +server { + listen 80; + server_name 150.158.236.152; + client_max_body_size 100M; + # root /usr/share/nginx/html; + include /etc/nginx/mime.types; + + # 处理OPTIONS请求 + # location / { + # if ($request_method = 'OPTIONS') { + # add_header 'Access-Control-Allow-Origin' '*' always; + # add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS' always; + # add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range,Authorization' always; + # add_header 'Access-Control-Max-Age' 1728000 always; + # add_header 'Content-Type' 'text/plain; charset=utf-8' always; + # add_header 'Content-Length' 0 always; + # return 204; + # } + # try_files $uri $uri/ /index.html; + # } + + location / { + root /usr/share/nginx/html; # 末尾无斜杠 + try_files $uri $uri/ /index.html; + } + + + location /accidentportal/ { + rewrite ^/accidentportal/(.*)$ /$1 last; + + } + + # 修复API代理 + location /accidentportal/api/ { + # rewrite ^/api(.*)$ $1 break; + # proxy_pass http://150.158.236.152:5221/; # 注意结尾斜杠 + proxy_buffer_size 128k; + proxy_buffers 16 128k; + proxy_busy_buffers_size 256k; + proxy_max_temp_file_size 1024m; + + proxy_pass http://172.17.0.1:5221/accidentportal/api/; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_set_header X-Forwarded-Host $host; + + proxy_connect_timeout 300s; + proxy_send_timeout 300s; + proxy_read_timeout 300s; + + # 关键:Cookie处理 + proxy_cookie_path / "/; SameSite=Lax"; + } +} + + + + diff --git a/frontend/.commitlintrc b/frontend/.commitlintrc new file mode 100644 index 0000000..ace5fdc --- /dev/null +++ b/frontend/.commitlintrc @@ -0,0 +1,23 @@ +{ + "extends": ["@commitlint/config-conventional"], + "rules": { + "type-enum": [ + 2, + "always", + [ + "init", + "build", + "ci", + "chore", + "docs", + "feat", + "fix", + "perf", + "refactor", + "revert", + "style", + "test" + ] + ] + } +} diff --git a/frontend/.env b/frontend/.env new file mode 100644 index 0000000..301828f --- /dev/null +++ b/frontend/.env @@ -0,0 +1,4 @@ +VITE_APP_NAME=Backend +VITE_APP_BASE=/ +VITE_APP_BASE_API=/api +VITE_APP_LOAD_ROUTE_WAY=BACKEND diff --git a/frontend/.env.development b/frontend/.env.development new file mode 100644 index 0000000..08b0e4b --- /dev/null +++ b/frontend/.env.development @@ -0,0 +1,22 @@ +VITE_APP_BASE_API=/accidentportal/api +VITE_APP_BASE_URL=http://localhost:5221 + +VITE_APP_LOAD_ROUTE_WAY=FRONTEND + +VITE_APP_BASE_API_DEV=/api +VITE_APP_BASE_URL_DEV=http://localhost:5221 + +# The title of your application (string) +VITE_GLOB_APP_TITLE="RDCA_Incidents Data Portal" + +# 标记为测试环境 +VITE_ENV=test + +# 登录跳转 +VITE_LOGIN_URL = http://localhost:5221/accidentportal/user/login + +# 请求头的密钥 +VITE_APP_CHECK_KEY = 'mbincid-server12' + +# 前端配置域名加的前缀名 +VITE_APP_DOMAIN_PREFIX='accidentportal' \ No newline at end of file diff --git a/frontend/.env.production b/frontend/.env.production new file mode 100644 index 0000000..3b64fdd --- /dev/null +++ b/frontend/.env.production @@ -0,0 +1,14 @@ +VITE_APP_BASE_API=/accidentportal/api +VITE_APP_BASE_URL=http://150.158.236.152:5221 +# The title of your application (string) +VITE_GLOB_APP_TITLE="RDCA_Incidents Data Portal" + +# 登录跳转 +# VITE_LOGIN_URL = http://150.158.236.152:5221/login +VITE_LOGIN_URL = http://150.158.236.152:5221/accidentportal/api/user/login + +# 请求头的密钥 +VITE_APP_CHECK_KEY = 'mbincid-server12' + +# 前端配置域名加的前缀名 +VITE_APP_DOMAIN_PREFIX = 'accidentportal' \ No newline at end of file diff --git a/frontend/.github/FUNDING.yml b/frontend/.github/FUNDING.yml new file mode 100644 index 0000000..60ed5f8 --- /dev/null +++ b/frontend/.github/FUNDING.yml @@ -0,0 +1,5 @@ +# These are supported funding model platforms + +github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +open_collective: antdv-pro +custom: ['https://docs.antdv-pro.com/other/sponsor.html'] diff --git a/frontend/.github/workflows/deploy.yml b/frontend/.github/workflows/deploy.yml new file mode 100644 index 0000000..e1b0e77 --- /dev/null +++ b/frontend/.github/workflows/deploy.yml @@ -0,0 +1,30 @@ +name: deploy + +on: + push: + branches: + - main +jobs: + DEPLOY: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: pnpm/action-setup@v2 + - uses: actions/setup-node@v3 + with: + node-version: 20.x + cache: pnpm + + - name: Install + run: pnpm install --no-frozen-lockfile + + - name: Build + run: pnpm run build + + - name: Deploy + uses: SamKirkland/FTP-Deploy-Action@v4.3.4 + with: + server: ${{ secrets.FTP_HOST }} # e.g. ftp.host.com or sftp.host.com (without ftp:// or ftps://) + username: ${{ secrets.FTP_USERNAME }} # FTP username + password: ${{ secrets.FTP_PASSWORD }} # FTP password + local-dir: dist/ # optional, local path, default is: dist diff --git a/frontend/.github/workflows/issue-close.yml b/frontend/.github/workflows/issue-close.yml new file mode 100644 index 0000000..3072a30 --- /dev/null +++ b/frontend/.github/workflows/issue-close.yml @@ -0,0 +1,20 @@ +name: Issue Close Require + +on: + schedule: + - cron: '0 0 * * *' + +jobs: + close-issues: + runs-on: ubuntu-latest + steps: + - name: need reproduce + uses: actions-cool/issues-helper@v1.7 + with: + actions: close-issues + labels: 🤔 Need Reproduce + inactive-day: 7 + body: | + Since the issue was labeled with `Need Reproduce`, but no response in 7 days. This issue will be closed. If you have any questions, you can comment and reply. + + 由于该 issue 被标记为需要复现信息,却 7 天未收到回应。现关闭 issue,若有任何问题,可评论回复。 diff --git a/frontend/.github/workflows/lint.yml b/frontend/.github/workflows/lint.yml new file mode 100644 index 0000000..2640a3f --- /dev/null +++ b/frontend/.github/workflows/lint.yml @@ -0,0 +1,27 @@ +name: Lint + +on: + push: + branches: + - main + + pull_request: + branches: + - main + +jobs: + LINT: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: pnpm/action-setup@v2 + - uses: actions/setup-node@v3 + with: + node-version: 20.x + cache: pnpm + + - name: Install + run: pnpm install --no-frozen-lockfile + + - name: Lint + run: pnpm run lint diff --git a/frontend/.github/workflows/release.yml b/frontend/.github/workflows/release.yml new file mode 100644 index 0000000..f2c2f80 --- /dev/null +++ b/frontend/.github/workflows/release.yml @@ -0,0 +1,25 @@ +name: Release + +permissions: + contents: write + +on: + push: + tags: + - 'v*' + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - uses: actions/setup-node@v3 + with: + node-version: 20.x + + - run: npx changelogithub # or changelogithub@0.12 if ensure the stable result + env: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/frontend/.husky/commit-msg b/frontend/.husky/commit-msg new file mode 100644 index 0000000..ee0f601 --- /dev/null +++ b/frontend/.husky/commit-msg @@ -0,0 +1,3 @@ +echo "husky commit-msg-lint start" +npx --no -- commitlint --edit "" +echo "husky commit-msg-lint end" diff --git a/frontend/.husky/pre-commit b/frontend/.husky/pre-commit new file mode 100644 index 0000000..3d5982c --- /dev/null +++ b/frontend/.husky/pre-commit @@ -0,0 +1,3 @@ +echo "husky lint-staged start" +npx lint-staged +echo "husky lint-staged end" diff --git a/frontend/.npmrc b/frontend/.npmrc new file mode 100644 index 0000000..89666ea --- /dev/null +++ b/frontend/.npmrc @@ -0,0 +1,4 @@ +public-hoist-pattern[]=@vue/runtime-core +public-hoist-pattern[]=eslint-* +public-hoist-pattern[]=@typescript-eslint* +package-manager-strict=false \ No newline at end of file diff --git a/frontend/CHANGELOG.md b/frontend/CHANGELOG.md new file mode 100644 index 0000000..7cd1e3a --- /dev/null +++ b/frontend/CHANGELOG.md @@ -0,0 +1,1374 @@ +# Changelog + + +## v1.4.0 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v1.3.2...v1.4.0) + +### 🚀 Enhancements + +- Use mock-h3 replace nitro ([33e1ff7](https://github.com/antdv-pro/antdv-pro/commit/33e1ff7)) + +### 🩹 Fixes + +- The newly added tag theme is not working on the dark background of the personal center ([27cb016](https://github.com/antdv-pro/antdv-pro/commit/27cb016)) + +### 🏡 Chore + +- **release:** V1.3.2 ([71529e3](https://github.com/antdv-pro/antdv-pro/commit/71529e3)) +- I18n ally ext's config compatibility,remove vite v6 invalid opts ([f995df2](https://github.com/antdv-pro/antdv-pro/commit/f995df2)) +- Use rolldown-vite build project ([91e9091](https://github.com/antdv-pro/antdv-pro/commit/91e9091)) + +### ❤️ Contributors + +- Aibayanyu20 +- ZhouWei <1244620067@qq.com> +- 阿鸡艾克斯蒙 + +## v1.3.2 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v1.3.1...v1.3.2) + +### 🩹 Fixes + +- Fix multi tab animation not effect ([03540a0](https://github.com/antdv-pro/antdv-pro/commit/03540a0)) +- Dark mode refresh not effect close #208 ([#208](https://github.com/antdv-pro/antdv-pro/issues/208)) +- Mobile sider logo background not has bg close #207 ([#207](https://github.com/antdv-pro/antdv-pro/issues/207)) + +### 🏡 Chore + +- **release:** V1.3.1 ([134444a](https://github.com/antdv-pro/antdv-pro/commit/134444a)) +- Change compactAlgorithm default value ([4b4d66d](https://github.com/antdv-pro/antdv-pro/commit/4b4d66d)) +- Update deps ([6690973](https://github.com/antdv-pro/antdv-pro/commit/6690973)) +- Change vite config ([6020a51](https://github.com/antdv-pro/antdv-pro/commit/6020a51)) + +### ❤️ Contributors + +- Aibayanyu20 + +## v1.3.1 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v1.3.0...v1.3.1) + +### 🩹 Fixes + +- Fix menu transition close #197 ([#197](https://github.com/antdv-pro/antdv-pro/issues/197)) +- Fix theme ([479ac5f](https://github.com/antdv-pro/antdv-pro/commit/479ac5f)) +- First load compactAlgorithm not effect close #204 ([#204](https://github.com/antdv-pro/antdv-pro/issues/204)) +- Fix scroller layout override ([626579f](https://github.com/antdv-pro/antdv-pro/commit/626579f)) + +### 🏡 Chore + +- Update vue3.5 ([3715bae](https://github.com/antdv-pro/antdv-pro/commit/3715bae)) +- Update deps ([a9175e5](https://github.com/antdv-pro/antdv-pro/commit/a9175e5)) +- Change ts version ([f81e1c6](https://github.com/antdv-pro/antdv-pro/commit/f81e1c6)) +- Change Andtv-Pro to Antdv-Pro ([3b97af4](https://github.com/antdv-pro/antdv-pro/commit/3b97af4)) +- Update deps ([341becb](https://github.com/antdv-pro/antdv-pro/commit/341becb)) + +### ❤️ Contributors + +- Aibayanyu20 +- 红烧粽子 ([@songsong0707](http://github.com/songsong0707)) + +## v1.3.0 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v1.1.0...v1.3.0) + +### 🚀 Enhancements + +- Add gray mode ([5d43b13](https://github.com/antdv-pro/antdv-pro/commit/5d43b13)) +- Add afterQuery fn for `table-query.ts` ([0503a37](https://github.com/antdv-pro/antdv-pro/commit/0503a37)) +- Change multi tab placeholder height calculation ([f3393d9](https://github.com/antdv-pro/antdv-pro/commit/f3393d9)) +- Add info ([492461c](https://github.com/antdv-pro/antdv-pro/commit/492461c)) +- Add info ([92268fb](https://github.com/antdv-pro/antdv-pro/commit/92268fb)) + +### 🩹 Fixes + +- Fix not has page container fuild not support ([78a41cf](https://github.com/antdv-pro/antdv-pro/commit/78a41cf)) +- Change ([51ce087](https://github.com/antdv-pro/antdv-pro/commit/51ce087)) +- Fix title style in slider logo #152 ([#152](https://github.com/antdv-pro/antdv-pro/issues/152)) +- Fix page container is fast switch close #157 ([#157](https://github.com/antdv-pro/antdv-pro/issues/157)) +- **types:** Fix table query hook types ([169e9d5](https://github.com/antdv-pro/antdv-pro/commit/169e9d5)) +- **types:** Fix tsc error ([59ced75](https://github.com/antdv-pro/antdv-pro/commit/59ced75)) +- Query typo ([ba21d97](https://github.com/antdv-pro/antdv-pro/commit/ba21d97)) +- Typo ([6e9930d](https://github.com/antdv-pro/antdv-pro/commit/6e9930d)) +- Profile menu icon ([1b4399d](https://github.com/antdv-pro/antdv-pro/commit/1b4399d)) +- I18n-ally extension setting ([fe1d87b](https://github.com/antdv-pro/antdv-pro/commit/fe1d87b)) +- Multi-tab width error ([f6e7312](https://github.com/antdv-pro/antdv-pro/commit/f6e7312)) +- Change ext ([63f0818](https://github.com/antdv-pro/antdv-pro/commit/63f0818)) +- Attribute definition error ([2206646](https://github.com/antdv-pro/antdv-pro/commit/2206646)) +- **function:** Fix 菜单手风琴模式,子菜单未能按手风琴模式进行展开/收起; ([330d5b1](https://github.com/antdv-pro/antdv-pro/commit/330d5b1)) +- Fix split multi tab close #172 ([#172](https://github.com/antdv-pro/antdv-pro/issues/172)) +- Fixed multi tab display error close #173 ([#173](https://github.com/antdv-pro/antdv-pro/issues/173)) +- Fix error ([c6bba82](https://github.com/antdv-pro/antdv-pro/commit/c6bba82)) +- Jump page is blank close #168 ([#168](https://github.com/antdv-pro/antdv-pro/issues/168)) +- Jump page blank & support page multi page ([372dae9](https://github.com/antdv-pro/antdv-pro/commit/372dae9)) +- Keep alive is not effect ([e310c7c](https://github.com/antdv-pro/antdv-pro/commit/e310c7c)) +- Transition ([db9bd34](https://github.com/antdv-pro/antdv-pro/commit/db9bd34)) +- Dynamic router is multi render ([fd0b825](https://github.com/antdv-pro/antdv-pro/commit/fd0b825)) +- Close #179 ([#179](https://github.com/antdv-pro/antdv-pro/issues/179)) +- Watermark render ([b0fd3b8](https://github.com/antdv-pro/antdv-pro/commit/b0fd3b8)) +- Watermark container ([36c6121](https://github.com/antdv-pro/antdv-pro/commit/36c6121)) +- Watermark false render ([13123bf](https://github.com/antdv-pro/antdv-pro/commit/13123bf)) +- Watermark false render ([663ec59](https://github.com/antdv-pro/antdv-pro/commit/663ec59)) +- 前端路由(dynamicRoutes)权限问题 ([a8e9623](https://github.com/antdv-pro/antdv-pro/commit/a8e9623)) +- Eslint ([a53e1ef](https://github.com/antdv-pro/antdv-pro/commit/a53e1ef)) + +### 📖 Documentation + +- Word spelling mistake ([b5ce8e6](https://github.com/antdv-pro/antdv-pro/commit/b5ce8e6)) +- Add support ([afaaef9](https://github.com/antdv-pro/antdv-pro/commit/afaaef9)) + +### 🏡 Chore + +- **release:** V1.1.0 ([ee4ac82](https://github.com/antdv-pro/antdv-pro/commit/ee4ac82)) +- Update deps ([a29c25c](https://github.com/antdv-pro/antdv-pro/commit/a29c25c)) +- Change ([5872282](https://github.com/antdv-pro/antdv-pro/commit/5872282)) +- Update deps ([55672d6](https://github.com/antdv-pro/antdv-pro/commit/55672d6)) +- Update deps ([2a2a29f](https://github.com/antdv-pro/antdv-pro/commit/2a2a29f)) +- Update deps ([722c5cd](https://github.com/antdv-pro/antdv-pro/commit/722c5cd)) +- Change ([5d59e94](https://github.com/antdv-pro/antdv-pro/commit/5d59e94)) +- Change ([8240b0c](https://github.com/antdv-pro/antdv-pro/commit/8240b0c)) +- Update deps ([c84c6e8](https://github.com/antdv-pro/antdv-pro/commit/c84c6e8)) +- Update deps ([b9cb20b](https://github.com/antdv-pro/antdv-pro/commit/b9cb20b)) +- Change ([9b66e0a](https://github.com/antdv-pro/antdv-pro/commit/9b66e0a)) +- Update vue-tsc to v2 ([12b6ab7](https://github.com/antdv-pro/antdv-pro/commit/12b6ab7)) +- Update deps ([5507f3c](https://github.com/antdv-pro/antdv-pro/commit/5507f3c)) +- Change ([4a0fb25](https://github.com/antdv-pro/antdv-pro/commit/4a0fb25)) +- Change ([2118246](https://github.com/antdv-pro/antdv-pro/commit/2118246)) +- Update deps ([3df11aa](https://github.com/antdv-pro/antdv-pro/commit/3df11aa)) +- Update deps ([81009b7](https://github.com/antdv-pro/antdv-pro/commit/81009b7)) +- Add js version ([9f2d91f](https://github.com/antdv-pro/antdv-pro/commit/9f2d91f)) +- Change ([abeb40f](https://github.com/antdv-pro/antdv-pro/commit/abeb40f)) +- Change ([9105c8f](https://github.com/antdv-pro/antdv-pro/commit/9105c8f)) +- Loading adjusting capitalization ([c3711e2](https://github.com/antdv-pro/antdv-pro/commit/c3711e2)) +- Comply with rules ([efa67cd](https://github.com/antdv-pro/antdv-pro/commit/efa67cd)) +- **release:** V1.2.0 ([0c8f53a](https://github.com/antdv-pro/antdv-pro/commit/0c8f53a)) +- Update deps ([ffde71a](https://github.com/antdv-pro/antdv-pro/commit/ffde71a)) +- Update generate-route.ts ([e371be3](https://github.com/antdv-pro/antdv-pro/commit/e371be3)) +- Remove qr ([678c328](https://github.com/antdv-pro/antdv-pro/commit/678c328)) +- Update deps ([b491a31](https://github.com/antdv-pro/antdv-pro/commit/b491a31)) + +### 🤖 CI + +- Update husky ([bfe5333](https://github.com/antdv-pro/antdv-pro/commit/bfe5333)) +- Change ci ([4e87850](https://github.com/antdv-pro/antdv-pro/commit/4e87850)) +- Change ci ([1b01aab](https://github.com/antdv-pro/antdv-pro/commit/1b01aab)) + +### ❤️ Contributors + +- Aibayanyu20 +- Wrong ([@wlonghaha](http://github.com/wlonghaha)) +- ZhouWei <1244620067@qq.com> +- PonyHu <3697820@qq.com> +- Copofe ([@copofe](http://github.com/copofe)) +- Ziggs.zhao +- Yizhankui <2669587581@qq.com> +- Zhang Zhi Chao ([@Alkaidcc](http://github.com/Alkaidcc)) +- Kaivanwong +- Netfan ([@mynetfan](http://github.com/mynetfan)) + +## v1.2.0 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v1.1.0...v1.2.0) + +### 🚀 Enhancements + +- Add gray mode ([5d43b13](https://github.com/antdv-pro/antdv-pro/commit/5d43b13)) +- Add afterQuery fn for `table-query.ts` ([0503a37](https://github.com/antdv-pro/antdv-pro/commit/0503a37)) +- Change multi tab placeholder height calculation ([f3393d9](https://github.com/antdv-pro/antdv-pro/commit/f3393d9)) +- Add info ([492461c](https://github.com/antdv-pro/antdv-pro/commit/492461c)) +- Add info ([92268fb](https://github.com/antdv-pro/antdv-pro/commit/92268fb)) + +### 🩹 Fixes + +- Fix not has page container fuild not support ([78a41cf](https://github.com/antdv-pro/antdv-pro/commit/78a41cf)) +- Change ([51ce087](https://github.com/antdv-pro/antdv-pro/commit/51ce087)) +- Fix title style in slider logo #152 ([#152](https://github.com/antdv-pro/antdv-pro/issues/152)) +- Fix page container is fast switch close #157 ([#157](https://github.com/antdv-pro/antdv-pro/issues/157)) +- **types:** Fix table query hook types ([169e9d5](https://github.com/antdv-pro/antdv-pro/commit/169e9d5)) +- **types:** Fix tsc error ([59ced75](https://github.com/antdv-pro/antdv-pro/commit/59ced75)) +- Query typo ([ba21d97](https://github.com/antdv-pro/antdv-pro/commit/ba21d97)) +- Typo ([6e9930d](https://github.com/antdv-pro/antdv-pro/commit/6e9930d)) +- Profile menu icon ([1b4399d](https://github.com/antdv-pro/antdv-pro/commit/1b4399d)) +- I18n-ally extension setting ([fe1d87b](https://github.com/antdv-pro/antdv-pro/commit/fe1d87b)) +- Multi-tab width error ([f6e7312](https://github.com/antdv-pro/antdv-pro/commit/f6e7312)) +- Change ext ([63f0818](https://github.com/antdv-pro/antdv-pro/commit/63f0818)) +- Attribute definition error ([2206646](https://github.com/antdv-pro/antdv-pro/commit/2206646)) +- **function:** Fix 菜单手风琴模式,子菜单未能按手风琴模式进行展开/收起; ([330d5b1](https://github.com/antdv-pro/antdv-pro/commit/330d5b1)) +- Fix split multi tab close #172 ([#172](https://github.com/antdv-pro/antdv-pro/issues/172)) +- Fixed multi tab display error close #173 ([#173](https://github.com/antdv-pro/antdv-pro/issues/173)) +- Fix error ([c6bba82](https://github.com/antdv-pro/antdv-pro/commit/c6bba82)) +- Jump page is blank close #168 ([#168](https://github.com/antdv-pro/antdv-pro/issues/168)) +- Jump page blank & support page multi page ([372dae9](https://github.com/antdv-pro/antdv-pro/commit/372dae9)) +- Keep alive is not effect ([e310c7c](https://github.com/antdv-pro/antdv-pro/commit/e310c7c)) +- Transition ([db9bd34](https://github.com/antdv-pro/antdv-pro/commit/db9bd34)) +- Dynamic router is multi render ([fd0b825](https://github.com/antdv-pro/antdv-pro/commit/fd0b825)) +- Close #179 ([#179](https://github.com/antdv-pro/antdv-pro/issues/179)) +- Watermark render ([b0fd3b8](https://github.com/antdv-pro/antdv-pro/commit/b0fd3b8)) +- Watermark container ([36c6121](https://github.com/antdv-pro/antdv-pro/commit/36c6121)) +- Watermark false render ([13123bf](https://github.com/antdv-pro/antdv-pro/commit/13123bf)) +- Watermark false render ([663ec59](https://github.com/antdv-pro/antdv-pro/commit/663ec59)) + +### 📖 Documentation + +- Word spelling mistake ([b5ce8e6](https://github.com/antdv-pro/antdv-pro/commit/b5ce8e6)) +- Add support ([afaaef9](https://github.com/antdv-pro/antdv-pro/commit/afaaef9)) + +### 🏡 Chore + +- **release:** V1.1.0 ([ee4ac82](https://github.com/antdv-pro/antdv-pro/commit/ee4ac82)) +- Update deps ([a29c25c](https://github.com/antdv-pro/antdv-pro/commit/a29c25c)) +- Change ([5872282](https://github.com/antdv-pro/antdv-pro/commit/5872282)) +- Update deps ([55672d6](https://github.com/antdv-pro/antdv-pro/commit/55672d6)) +- Update deps ([2a2a29f](https://github.com/antdv-pro/antdv-pro/commit/2a2a29f)) +- Update deps ([722c5cd](https://github.com/antdv-pro/antdv-pro/commit/722c5cd)) +- Change ([5d59e94](https://github.com/antdv-pro/antdv-pro/commit/5d59e94)) +- Change ([8240b0c](https://github.com/antdv-pro/antdv-pro/commit/8240b0c)) +- Update deps ([c84c6e8](https://github.com/antdv-pro/antdv-pro/commit/c84c6e8)) +- Update deps ([b9cb20b](https://github.com/antdv-pro/antdv-pro/commit/b9cb20b)) +- Change ([9b66e0a](https://github.com/antdv-pro/antdv-pro/commit/9b66e0a)) +- Update vue-tsc to v2 ([12b6ab7](https://github.com/antdv-pro/antdv-pro/commit/12b6ab7)) +- Update deps ([5507f3c](https://github.com/antdv-pro/antdv-pro/commit/5507f3c)) +- Change ([4a0fb25](https://github.com/antdv-pro/antdv-pro/commit/4a0fb25)) +- Change ([2118246](https://github.com/antdv-pro/antdv-pro/commit/2118246)) +- Update deps ([3df11aa](https://github.com/antdv-pro/antdv-pro/commit/3df11aa)) +- Update deps ([81009b7](https://github.com/antdv-pro/antdv-pro/commit/81009b7)) +- Add js version ([9f2d91f](https://github.com/antdv-pro/antdv-pro/commit/9f2d91f)) +- Change ([abeb40f](https://github.com/antdv-pro/antdv-pro/commit/abeb40f)) +- Change ([9105c8f](https://github.com/antdv-pro/antdv-pro/commit/9105c8f)) + +### 🤖 CI + +- Update husky ([bfe5333](https://github.com/antdv-pro/antdv-pro/commit/bfe5333)) +- Change ci ([4e87850](https://github.com/antdv-pro/antdv-pro/commit/4e87850)) +- Change ci ([1b01aab](https://github.com/antdv-pro/antdv-pro/commit/1b01aab)) + +### ❤️ Contributors + +- Aibayanyu20 +- PonyHu <3697820@qq.com> +- Copofe +- ZhouWei <1244620067@qq.com> +- Ziggs.zhao +- Yizhankui <2669587581@qq.com> +- Zhang Zhi Chao ([@Alkaidcc](http://github.com/Alkaidcc)) +- Kaivanwong ([@kaivanwong](http://github.com/kaivanwong)) +- Netfan + +## v1.1.0 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v1.0.2...v1.1.0) + +### 🚀 Enhancements + +- Add table-query hook for crud table ([ab64028](https://github.com/antdv-pro/antdv-pro/commit/ab64028)) + +### 🩹 Fixes + +- Eslint-config in vscode ([f8018ac](https://github.com/antdv-pro/antdv-pro/commit/f8018ac)) +- 路由切换可能导致page-container的头部面包屑等区域被意外隐藏 ([03d3ea8](https://github.com/antdv-pro/antdv-pro/commit/03d3ea8)) +- Nested not change ([afa71cd](https://github.com/antdv-pro/antdv-pro/commit/afa71cd)) + +### 💅 Refactors + +- Page container ([0c0cd0d](https://github.com/antdv-pro/antdv-pro/commit/0c0cd0d)) + +### 🏡 Chore + +- Remove icon ([79cb981](https://github.com/antdv-pro/antdv-pro/commit/79cb981)) +- Update deps ([4535f65](https://github.com/antdv-pro/antdv-pro/commit/4535f65)) + +### ❤️ Contributors + +- Aibayanyu20 +- Sun1090 <1090964491@qq.com> +- Wangqifan + +## v1.0.2 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v1.0.1...v1.0.2) + +### 🩹 Fixes + +- Typo ([ba8f474](https://github.com/antdv-pro/antdv-pro/commit/ba8f474)) + +### 🏡 Chore + +- Update deps ([0d41da9](https://github.com/antdv-pro/antdv-pro/commit/0d41da9)) +- Use antfu eslint config replace mist config ([c11224e](https://github.com/antdv-pro/antdv-pro/commit/c11224e)) +- Update deps ([a12b56f](https://github.com/antdv-pro/antdv-pro/commit/a12b56f)) + +### ❤️ Contributors + +- Aibayanyu20 + +## v1.0.1 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v1.0.0...v1.0.1) + +### 🩹 Fixes + +- Fix circular imports ([7ab99da](https://github.com/antdv-pro/antdv-pro/commit/7ab99da)) +- Fix page container dynamic update in advance ([13d9486](https://github.com/antdv-pro/antdv-pro/commit/13d9486)) + +### 🏡 Chore + +- **release:** V1.0.0 ([e7ca880](https://github.com/antdv-pro/antdv-pro/commit/e7ca880)) + +### ❤️ Contributors + +- Aibayanyu20 + +## v1.0.0 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v1.0.0-beta.3...v1.0.0) + +### 🚀 Enhancements + +- Add preload ([6c0e6c9](https://github.com/antdv-pro/antdv-pro/commit/6c0e6c9)) +- Support vite 5 ([e84c7b7](https://github.com/antdv-pro/antdv-pro/commit/e84c7b7)) +- Complete compact-algorithm ([99f2074](https://github.com/antdv-pro/antdv-pro/commit/99f2074)) +- Query table add toolbar ([7fe8f90](https://github.com/antdv-pro/antdv-pro/commit/7fe8f90)) + +### 🩹 Fixes + +- Change ([8bdfd94](https://github.com/antdv-pro/antdv-pro/commit/8bdfd94)) +- Preload error ([c0de1fc](https://github.com/antdv-pro/antdv-pro/commit/c0de1fc)) +- Fix top mode page-container not expand close #127 ([#127](https://github.com/antdv-pro/antdv-pro/issues/127)) +- Eslint error ([39dbe6f](https://github.com/antdv-pro/antdv-pro/commit/39dbe6f)) +- Eslint not support ([d249d98](https://github.com/antdv-pro/antdv-pro/commit/d249d98)) +- Note ([92beb3e](https://github.com/antdv-pro/antdv-pro/commit/92beb3e)) +- X-axis scroll bar appears in top layout mode ([bf2a206](https://github.com/antdv-pro/antdv-pro/commit/bf2a206)) +- Footertoolbar not effect layout ([e025b9c](https://github.com/antdv-pro/antdv-pro/commit/e025b9c)) + +### 🏡 Chore + +- Delete eslintignore replace eslint.config ([baa7747](https://github.com/antdv-pro/antdv-pro/commit/baa7747)) +- Update deps ([6fc6496](https://github.com/antdv-pro/antdv-pro/commit/6fc6496)) +- Change tsconfig ([734e287](https://github.com/antdv-pro/antdv-pro/commit/734e287)) +- Update scripts ([f372ac9](https://github.com/antdv-pro/antdv-pro/commit/f372ac9)) +- Change script ([1e80dd4](https://github.com/antdv-pro/antdv-pro/commit/1e80dd4)) +- Update deps ([0de46db](https://github.com/antdv-pro/antdv-pro/commit/0de46db)) +- Support ssl config ([ca9d37b](https://github.com/antdv-pro/antdv-pro/commit/ca9d37b)) +- Update deps ([b7c557c](https://github.com/antdv-pro/antdv-pro/commit/b7c557c)) +- Update deps ([ff86513](https://github.com/antdv-pro/antdv-pro/commit/ff86513)) +- Update deps ([abaee14](https://github.com/antdv-pro/antdv-pro/commit/abaee14)) +- Add funding ([03ef885](https://github.com/antdv-pro/antdv-pro/commit/03ef885)) +- Change ([ceb08eb](https://github.com/antdv-pro/antdv-pro/commit/ceb08eb)) +- Update vue@3.4.x ([a9e9ac9](https://github.com/antdv-pro/antdv-pro/commit/a9e9ac9)) + +### 🤖 CI + +- Change node version ([540224b](https://github.com/antdv-pro/antdv-pro/commit/540224b)) + +### ❤️ Contributors + +- Aibayanyu20 +- ZhouWei <1244620067@qq.com> +- Undefined ([@undefined-moe](http://github.com/undefined-moe)) +- LinRenJie +- Aibayanyu + +## v1.0.0-beta.3 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v1.0.0-beta.2...v1.0.0-beta.3) + +### 🩹 Fixes + +- Locale error ([df1293d](https://github.com/antdv-pro/antdv-pro/commit/df1293d)) + +### 🏡 Chore + +- Update readme ([27ab14e](https://github.com/antdv-pro/antdv-pro/commit/27ab14e)) +- Update deps ([9946ea4](https://github.com/antdv-pro/antdv-pro/commit/9946ea4)) +- Update deps ([aae9b3a](https://github.com/antdv-pro/antdv-pro/commit/aae9b3a)) +- Unified build output directory #118 ([#118](https://github.com/antdv-pro/antdv-pro/issues/118)) +- Update deps ([75937d6](https://github.com/antdv-pro/antdv-pro/commit/75937d6)) + +### ❤️ Contributors + +- Aibayanyu +- Aibayanyu20 +- Kirk Lin ([@kirklin](http://github.com/kirklin)) + +## v1.0.0-beta.2 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v1.0.0-beta.1...v1.0.0-beta.2) + +### 🚀 Enhancements + +- Add vitest ([ec66360](https://github.com/antdv-pro/antdv-pro/commit/ec66360)) +- Add icp ([ced7249](https://github.com/antdv-pro/antdv-pro/commit/ced7249)) + +### 🩹 Fixes + +- Fix the page not scrolling to the top when switching ([d6a2406](https://github.com/antdv-pro/antdv-pro/commit/d6a2406)) +- Fix locale auto load error ([e441349](https://github.com/antdv-pro/antdv-pro/commit/e441349)) +- Using vite's outDir to unify staticPath ([d5f5448](https://github.com/antdv-pro/antdv-pro/commit/d5f5448)) +- Fix typo ([e68bb8c](https://github.com/antdv-pro/antdv-pro/commit/e68bb8c)) +- Fix i18n hot accept error ([e1da2a8](https://github.com/antdv-pro/antdv-pro/commit/e1da2a8)) +- Card layout misalignment ([1944820](https://github.com/antdv-pro/antdv-pro/commit/1944820)) +- Remove tabs default margin ([8de0518](https://github.com/antdv-pro/antdv-pro/commit/8de0518)) +- Not has multitab prcessing pagecontainer spacing ([a604f9d](https://github.com/antdv-pro/antdv-pro/commit/a604f9d)) +- Icp open blank page ([f0739e2](https://github.com/antdv-pro/antdv-pro/commit/f0739e2)) +- Page show not right close #122 ([#122](https://github.com/antdv-pro/antdv-pro/issues/122)) + +### 🏡 Chore + +- Change version ([742270e](https://github.com/antdv-pro/antdv-pro/commit/742270e)) +- Update deps ([d291e93](https://github.com/antdv-pro/antdv-pro/commit/d291e93)) +- Update deps ([00b693e](https://github.com/antdv-pro/antdv-pro/commit/00b693e)) + +### ❤️ Contributors + +- Aibayanyu +- Jiabochao ([@jiabochao](http://github.com/jiabochao)) +- Undefined ([@undefined-moe](http://github.com/undefined-moe)) +- 萍萍 ([@jiabochao](http://github.com/jiabochao)) +- Aibayanyu20 +- Unknown ([@aibayanyu20](http://github.com/aibayanyu20)) + +## v1.0.0-beta.1 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v0.2.0...v1.0.0-beta.1) + +### 🚀 Enhancements + +- Add antdv-style ([329690f](https://github.com/antdv-pro/antdv-pro/commit/329690f)) +- Mist replace vite ([df6be41](https://github.com/antdv-pro/antdv-pro/commit/df6be41)) +- Delete file ([327ae33](https://github.com/antdv-pro/antdv-pro/commit/327ae33)) +- **setting:** Supported watermark switch ([a441950](https://github.com/antdv-pro/antdv-pro/commit/a441950)) +- Support eager mode ([32d9340](https://github.com/antdv-pro/antdv-pro/commit/32d9340)) + +### 🩹 Fixes + +- Add component name ([a444650](https://github.com/antdv-pro/antdv-pro/commit/a444650)) +- Support vercel deploy ([c78010f](https://github.com/antdv-pro/antdv-pro/commit/c78010f)) +- Support vercel deploy ([c2294aa](https://github.com/antdv-pro/antdv-pro/commit/c2294aa)) +- Change vercel config ([8af11a8](https://github.com/antdv-pro/antdv-pro/commit/8af11a8)) +- Change vercel config ([6f828e5](https://github.com/antdv-pro/antdv-pro/commit/6f828e5)) +- Dev server error ([7ef7e00](https://github.com/antdv-pro/antdv-pro/commit/7ef7e00)) + +### 🏡 Chore + +- Update deps ([524df05](https://github.com/antdv-pro/antdv-pro/commit/524df05)) +- Update `unplugin-config` ([403f3bb](https://github.com/antdv-pro/antdv-pro/commit/403f3bb)) +- Delete multimenu ([5673f06](https://github.com/antdv-pro/antdv-pro/commit/5673f06)) +- Resolve conflict ([5cac11e](https://github.com/antdv-pro/antdv-pro/commit/5cac11e)) +- Change version ([20bb03f](https://github.com/antdv-pro/antdv-pro/commit/20bb03f)) +- Change ([fcac6a0](https://github.com/antdv-pro/antdv-pro/commit/fcac6a0)) +- Change ([550a341](https://github.com/antdv-pro/antdv-pro/commit/550a341)) +- Change ([c2e4cc5](https://github.com/antdv-pro/antdv-pro/commit/c2e4cc5)) +- Change ([1826431](https://github.com/antdv-pro/antdv-pro/commit/1826431)) +- **release:** V1.0.0 ([699a870](https://github.com/antdv-pro/antdv-pro/commit/699a870)) + +### 🤖 CI + +- Support deploy ([5f7cd06](https://github.com/antdv-pro/antdv-pro/commit/5f7cd06)) +- Support deploy ([e53528e](https://github.com/antdv-pro/antdv-pro/commit/e53528e)) +- Change local-dir ([4c278e4](https://github.com/antdv-pro/antdv-pro/commit/4c278e4)) +- Change local-dir ([415fa6a](https://github.com/antdv-pro/antdv-pro/commit/415fa6a)) +- Change deploy ([259b768](https://github.com/antdv-pro/antdv-pro/commit/259b768)) +- Change deploy ([0cc948d](https://github.com/antdv-pro/antdv-pro/commit/0cc948d)) + +### ❤️ Contributors + +- Aibayanyu +- Aibayanyu20 +- 246859 ([@CQUT-Programmer](http://github.com/CQUT-Programmer)) +- Kirk Lin ([@kirklin](http://github.com/kirklin)) + +## v0.2.0 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v0.0.19...v0.2.0) + +### 🚀 Enhancements + +- Add exception page ([e857135](https://github.com/antdv-pro/antdv-pro/commit/e857135)) +- Add mock server ([2fbecaf](https://github.com/antdv-pro/antdv-pro/commit/2fbecaf)) +- 增加结果页路由 ([14d20f8](https://github.com/antdv-pro/antdv-pro/commit/14d20f8)) +- 增加结果页i18n配置 ([0f51c7d](https://github.com/antdv-pro/antdv-pro/commit/0f51c7d)) +- 同步结果页成功页 #28 ([#28](https://github.com/antdv-pro/antdv-pro/issues/28)) +- 增加结果页路由 #29 ([#29](https://github.com/antdv-pro/antdv-pro/issues/29)) +- Add new result page ([ad6463e](https://github.com/antdv-pro/antdv-pro/commit/ad6463e)) +- Add spinning loader to iframe ([c75a3b8](https://github.com/antdv-pro/antdv-pro/commit/c75a3b8)) +- Add spinning loader to iframe ([888d183](https://github.com/antdv-pro/antdv-pro/commit/888d183)) +- Add login redirect ([70293ed](https://github.com/antdv-pro/antdv-pro/commit/70293ed)) +- 增加路由 ([ef72da5](https://github.com/antdv-pro/antdv-pro/commit/ef72da5)) +- 页面 ([39ff6d5](https://github.com/antdv-pro/antdv-pro/commit/39ff6d5)) +- 路由配置 ([2af830c](https://github.com/antdv-pro/antdv-pro/commit/2af830c)) +- Picocolors custom terminal ([2aca5fd](https://github.com/antdv-pro/antdv-pro/commit/2aca5fd)) +- Add basic profile i18n config ([fb2ac66](https://github.com/antdv-pro/antdv-pro/commit/fb2ac66)) +- Add basic profile router ([1e8b9e4](https://github.com/antdv-pro/antdv-pro/commit/1e8b9e4)) +- Add basic profile i18n config ([cba4ba1](https://github.com/antdv-pro/antdv-pro/commit/cba4ba1)) +- 新增列表数据接口 ([11b7c89](https://github.com/antdv-pro/antdv-pro/commit/11b7c89)) +- 新增列表数据请求方法 ([47bbd73](https://github.com/antdv-pro/antdv-pro/commit/47bbd73)) +- Add a tsconfig rule ([ebaee8d](https://github.com/antdv-pro/antdv-pro/commit/ebaee8d)) +- Basic-list page ([dea1394](https://github.com/antdv-pro/antdv-pro/commit/dea1394)) +- Add search list ([c95c6aa](https://github.com/antdv-pro/antdv-pro/commit/c95c6aa)) +- Add dynamic routes ([766b04e](https://github.com/antdv-pro/antdv-pro/commit/766b04e)) +- Init route config ([e9eb147](https://github.com/antdv-pro/antdv-pro/commit/e9eb147)) +- New page ([ea00f70](https://github.com/antdv-pro/antdv-pro/commit/ea00f70)) +- Login view ([b270521](https://github.com/antdv-pro/antdv-pro/commit/b270521)) +- I18n config ([f292469](https://github.com/antdv-pro/antdv-pro/commit/f292469)) +- Page ([89fca03](https://github.com/antdv-pro/antdv-pro/commit/89fca03)) +- Axios loading ([f60c4d7](https://github.com/antdv-pro/antdv-pro/commit/f60c4d7)) +- Loading text prop ([26d96b4](https://github.com/antdv-pro/antdv-pro/commit/26d96b4)) +- Route config ([51cba5d](https://github.com/antdv-pro/antdv-pro/commit/51cba5d)) +- Update version ([5222e8c](https://github.com/antdv-pro/antdv-pro/commit/5222e8c)) +- Account center page ([dfeaf09](https://github.com/antdv-pro/antdv-pro/commit/dfeaf09)) +- Account-center i18n config ([0c38c00](https://github.com/antdv-pro/antdv-pro/commit/0c38c00)) +- Add basic table routes ([d445c08](https://github.com/antdv-pro/antdv-pro/commit/d445c08)) +- Add basic table i18n config ([d0e3385](https://github.com/antdv-pro/antdv-pro/commit/d0e3385)) +- Add basic table demo ([ddb7c13](https://github.com/antdv-pro/antdv-pro/commit/ddb7c13)) +- Add static routes ([9f42e28](https://github.com/antdv-pro/antdv-pro/commit/9f42e28)) +- Account-settings page ([b5f1360](https://github.com/antdv-pro/antdv-pro/commit/b5f1360)) +- I18n config ([c50b840](https://github.com/antdv-pro/antdv-pro/commit/c50b840)) +- Add step-form router ([23603f2](https://github.com/antdv-pro/antdv-pro/commit/23603f2)) +- Add step-form pages ([40baabe](https://github.com/antdv-pro/antdv-pro/commit/40baabe)) +- Add footer-tool-bar components ([7552a18](https://github.com/antdv-pro/antdv-pro/commit/7552a18)) +- Add advanced form router ([3bf0624](https://github.com/antdv-pro/antdv-pro/commit/3bf0624)) +- Add task form ([a4c1c51](https://github.com/antdv-pro/antdv-pro/commit/a4c1c51)) +- Add advanced form ([2fc8cc2](https://github.com/antdv-pro/antdv-pro/commit/2fc8cc2)) +- Add components parent ([fc47099](https://github.com/antdv-pro/antdv-pro/commit/fc47099)) +- Add parent layout ([75f4fd7](https://github.com/antdv-pro/antdv-pro/commit/75f4fd7)) +- Feat list ([412da2d](https://github.com/antdv-pro/antdv-pro/commit/412da2d)) +- Add `unocss-preset-chinese`, `unocss-preset-ease` ([7e5b706](https://github.com/antdv-pro/antdv-pro/commit/7e5b706)) +- Add some files ([431b1eb](https://github.com/antdv-pro/antdv-pro/commit/431b1eb)) +- Add consult-table page ([41ef497](https://github.com/antdv-pro/antdv-pro/commit/41ef497)) +- Add field trend components ([a2ecae7](https://github.com/antdv-pro/antdv-pro/commit/a2ecae7)) +- Add introduce-row first demo ([7a7e540](https://github.com/antdv-pro/antdv-pro/commit/7a7e540)) +- Complete introduce-row demo ([659bcaf](https://github.com/antdv-pro/antdv-pro/commit/659bcaf)) +- Add antv/g2plot package ([41c742e](https://github.com/antdv-pro/antdv-pro/commit/41c742e)) +- Add part of sales-card demo ([ac18ff6](https://github.com/antdv-pro/antdv-pro/commit/ac18ff6)) +- Delete useless code ([acbf99b](https://github.com/antdv-pro/antdv-pro/commit/acbf99b)) +- Complete sales-card demo ([ea9d0cd](https://github.com/antdv-pro/antdv-pro/commit/ea9d0cd)) +- Add 修改侧边栏可伸缩按钮位置 ([12cc61d](https://github.com/antdv-pro/antdv-pro/commit/12cc61d)) +- Add 修改侧边伸缩默认显示 ([4aebe57](https://github.com/antdv-pro/antdv-pro/commit/4aebe57)) +- Add 控制伸缩功能只在侧边布局生效 ([df0738c](https://github.com/antdv-pro/antdv-pro/commit/df0738c)) +- Complete number-info and top-search demo ([b0ceb48](https://github.com/antdv-pro/antdv-pro/commit/b0ceb48)) +- Complete proportion-sales demo ([be3b597](https://github.com/antdv-pro/antdv-pro/commit/be3b597)) +- Complete offline-data demo ([97cf972](https://github.com/antdv-pro/antdv-pro/commit/97cf972)) +- Reconstruct file location ([181e9ba](https://github.com/antdv-pro/antdv-pro/commit/181e9ba)) +- Add part of monitor demo ([0f3ca9d](https://github.com/antdv-pro/antdv-pro/commit/0f3ca9d)) +- Complete part of monitor demo ([f671f56](https://github.com/antdv-pro/antdv-pro/commit/f671f56)) +- Add part of workplace demo ([32958ac](https://github.com/antdv-pro/antdv-pro/commit/32958ac)) +- Complete workplace demo ([257c6b5](https://github.com/antdv-pro/antdv-pro/commit/257c6b5)) +- Complete monitor demo ([7b84c28](https://github.com/antdv-pro/antdv-pro/commit/7b84c28)) +- Change filename ([57a9bb0](https://github.com/antdv-pro/antdv-pro/commit/57a9bb0)) +- Add storage locale ([bf52bbb](https://github.com/antdv-pro/antdv-pro/commit/bf52bbb)) +- Support dynamic router close #93 ([#93](https://github.com/antdv-pro/antdv-pro/issues/93)) +- Add virtual list ([069f27f](https://github.com/antdv-pro/antdv-pro/commit/069f27f)) +- Change text ([4dccc14](https://github.com/antdv-pro/antdv-pro/commit/4dccc14)) +- Add `unplugin-config` ([c6107cf](https://github.com/antdv-pro/antdv-pro/commit/c6107cf)) + +### 🔥 Performance + +- 优化单独监听路由浪费渲染性能 ([05a3d79](https://github.com/antdv-pro/antdv-pro/commit/05a3d79)) + +### 🩹 Fixes + +- Fix iframe transition error ([57311cc](https://github.com/antdv-pro/antdv-pro/commit/57311cc)) +- Delete scroll ([a373517](https://github.com/antdv-pro/antdv-pro/commit/a373517)) +- Add script toJS ([1601334](https://github.com/antdv-pro/antdv-pro/commit/1601334)) +- Result page i18n step2-operator ([c900087](https://github.com/antdv-pro/antdv-pro/commit/c900087)) +- Success result i18n ([412dfeb](https://github.com/antdv-pro/antdv-pro/commit/412dfeb)) +- Router i18n ([d00cf4e](https://github.com/antdv-pro/antdv-pro/commit/d00cf4e)) +- Success page type error ([71aa9ec](https://github.com/antdv-pro/antdv-pro/commit/71aa9ec)) +- Success page type error ([451afd0](https://github.com/antdv-pro/antdv-pro/commit/451afd0)) +- Remove console log ([8c8a2db](https://github.com/antdv-pro/antdv-pro/commit/8c8a2db)) +- 修改路由错误 ([0d5e75c](https://github.com/antdv-pro/antdv-pro/commit/0d5e75c)) +- Dark theme error ([2c08422](https://github.com/antdv-pro/antdv-pro/commit/2c08422)) +- Commit-msg-lint ([2a91560](https://github.com/antdv-pro/antdv-pro/commit/2a91560)) +- Commit-msg-lint ([8e47aae](https://github.com/antdv-pro/antdv-pro/commit/8e47aae)) +- Commit-msg-lint, remove trailing comma ([e578774](https://github.com/antdv-pro/antdv-pro/commit/e578774)) +- 修改错误配置 ([0dc9048](https://github.com/antdv-pro/antdv-pro/commit/0dc9048)) +- Change dir name ([288e11c](https://github.com/antdv-pro/antdv-pro/commit/288e11c)) +- Fix qrcode ([1086a8d](https://github.com/antdv-pro/antdv-pro/commit/1086a8d)) +- Dark mode change error ([67ad773](https://github.com/antdv-pro/antdv-pro/commit/67ad773)) +- Lint error ([f064f70](https://github.com/antdv-pro/antdv-pro/commit/f064f70)) +- Build error ([1c13da1](https://github.com/antdv-pro/antdv-pro/commit/1c13da1)) +- Fix top mode header appear scroll && iframe is not fullscreen ([d07e846](https://github.com/antdv-pro/antdv-pro/commit/d07e846)) +- Change ([6e07288](https://github.com/antdv-pro/antdv-pro/commit/6e07288)) +- Build error ([8563a69](https://github.com/antdv-pro/antdv-pro/commit/8563a69)) +- Menu icon #53 ([#53](https://github.com/antdv-pro/antdv-pro/issues/53)) +- Login theme layout ([63e26a7](https://github.com/antdv-pro/antdv-pro/commit/63e26a7)) +- Rename enum file ([49edbc0](https://github.com/antdv-pro/antdv-pro/commit/49edbc0)) +- Login view change ([e861e47](https://github.com/antdv-pro/antdv-pro/commit/e861e47)) +- Fix page not full ([0caac29](https://github.com/antdv-pro/antdv-pro/commit/0caac29)) +- Router component ([a6e0fcf](https://github.com/antdv-pro/antdv-pro/commit/a6e0fcf)) +- Optimization level ([219646c](https://github.com/antdv-pro/antdv-pro/commit/219646c)) +- I18n symbol #60 ([#60](https://github.com/antdv-pro/antdv-pro/issues/60)) +- Login panel ([34cf8ae](https://github.com/antdv-pro/antdv-pro/commit/34cf8ae)) +- Validate not take effect ([baae131](https://github.com/antdv-pro/antdv-pro/commit/baae131)) +- Validate not take effect ([d132d04](https://github.com/antdv-pro/antdv-pro/commit/d132d04)) +- Add page container ([706087c](https://github.com/antdv-pro/antdv-pro/commit/706087c)) +- Type ([7d8ccde](https://github.com/antdv-pro/antdv-pro/commit/7d8ccde)) +- 将新消息通知中的三个切换按钮的checked状态单独定义 ([c7a44b7](https://github.com/antdv-pro/antdv-pro/commit/c7a44b7)) +- Footer tool bar support dark mode ([aae8cb3](https://github.com/antdv-pro/antdv-pro/commit/aae8cb3)) +- Fix radio-group ([e1a75b1](https://github.com/antdv-pro/antdv-pro/commit/e1a75b1)) +- Fix generate route ([b033198](https://github.com/antdv-pro/antdv-pro/commit/b033198)) +- Fix generate route ([41b50a1](https://github.com/antdv-pro/antdv-pro/commit/41b50a1)) +- Menu hidden header is not full close #71 ([#71](https://github.com/antdv-pro/antdv-pro/issues/71)) +- Build error close #75 ([#75](https://github.com/antdv-pro/antdv-pro/issues/75)) +- Collapsed trigger ([ff8ae6c](https://github.com/antdv-pro/antdv-pro/commit/ff8ae6c)) +- Account-setting avatar size ([069ad16](https://github.com/antdv-pro/antdv-pro/commit/069ad16)) +- Base-loading ui ([dfed9a9](https://github.com/antdv-pro/antdv-pro/commit/dfed9a9)) +- Modify route name to keep unique and basic form path ([69be62f](https://github.com/antdv-pro/antdv-pro/commit/69be62f)) +- Issues#68 ([#68](https://github.com/antdv-pro/antdv-pro/issues/68)) +- Add 删除打印和修正伸缩图标大小 ([22e74a8](https://github.com/antdv-pro/antdv-pro/commit/22e74a8)) +- Add pagination ([a04e223](https://github.com/antdv-pro/antdv-pro/commit/a04e223)) +- Issue#81 ([#81](https://github.com/antdv-pro/antdv-pro/issues/81)) +- Mock server error close #86 ([#86](https://github.com/antdv-pro/antdv-pro/issues/86)) +- Fix win and macos server env ([91bc884](https://github.com/antdv-pro/antdv-pro/commit/91bc884)) +- Dark mode ([1e31431](https://github.com/antdv-pro/antdv-pro/commit/1e31431)) +- Build error ([65bda0e](https://github.com/antdv-pro/antdv-pro/commit/65bda0e)) +- Build error ([3c5bc4b](https://github.com/antdv-pro/antdv-pro/commit/3c5bc4b)) +- Locale storage optimize ([a49d090](https://github.com/antdv-pro/antdv-pro/commit/a49d090)) +- Chart support destroy ([65bdfc7](https://github.com/antdv-pro/antdv-pro/commit/65bdfc7)) +- Change i18n ([8c3f517](https://github.com/antdv-pro/antdv-pro/commit/8c3f517)) +- Build error ([50b5773](https://github.com/antdv-pro/antdv-pro/commit/50b5773)) +- Chart auto fit ([f03bb48](https://github.com/antdv-pro/antdv-pro/commit/f03bb48)) +- Login form logo container layout ([a87df0d](https://github.com/antdv-pro/antdv-pro/commit/a87df0d)) +- Set autocomplete to off ([8ae0024](https://github.com/antdv-pro/antdv-pro/commit/8ae0024)) +- Switch menu stuck & stopped ([8173341](https://github.com/antdv-pro/antdv-pro/commit/8173341)) +- Add router key ([91256e3](https://github.com/antdv-pro/antdv-pro/commit/91256e3)) +- Change route view ([411a4b5](https://github.com/antdv-pro/antdv-pro/commit/411a4b5)) +- Change ([e2d046e](https://github.com/antdv-pro/antdv-pro/commit/e2d046e)) +- Add `defineOptions` to index file ([52e4053](https://github.com/antdv-pro/antdv-pro/commit/52e4053)) + +### 💅 Refactors + +- Change files name ([16f7940](https://github.com/antdv-pro/antdv-pro/commit/16f7940)) + +### 🏡 Chore + +- Add wx group jpg ([fc6481c](https://github.com/antdv-pro/antdv-pro/commit/fc6481c)) +- Update wx group ([2b32fa5](https://github.com/antdv-pro/antdv-pro/commit/2b32fa5)) +- Update dependencies for Nitro as devDependencies ([8480b27](https://github.com/antdv-pro/antdv-pro/commit/8480b27)) +- Update dependencies for Nitro as devDependencies ([6fbafac](https://github.com/antdv-pro/antdv-pro/commit/6fbafac)) +- Remove docs script ([18cf8f5](https://github.com/antdv-pro/antdv-pro/commit/18cf8f5)) +- Add deps ([a014040](https://github.com/antdv-pro/antdv-pro/commit/a014040)) +- Add commit check ([ad43dc1](https://github.com/antdv-pro/antdv-pro/commit/ad43dc1)) +- Add .gitattributes ([cc821f4](https://github.com/antdv-pro/antdv-pro/commit/cc821f4)) +- 删减路径多余空格 ([1617c99](https://github.com/antdv-pro/antdv-pro/commit/1617c99)) +- Change ci ([e4638d8](https://github.com/antdv-pro/antdv-pro/commit/e4638d8)) +- Add start date ([3de8ae4](https://github.com/antdv-pro/antdv-pro/commit/3de8ae4)) +- Types ([fd2f05f](https://github.com/antdv-pro/antdv-pro/commit/fd2f05f)) +- Chore ([6838cab](https://github.com/antdv-pro/antdv-pro/commit/6838cab)) +- Change ([d26935d](https://github.com/antdv-pro/antdv-pro/commit/d26935d)) +- Add current route ([1322f42](https://github.com/antdv-pro/antdv-pro/commit/1322f42)) +- Change components ([29d86c2](https://github.com/antdv-pro/antdv-pro/commit/29d86c2)) +- Change name ([85cabdb](https://github.com/antdv-pro/antdv-pro/commit/85cabdb)) +- **composables/loading:** Loading param note ([e81849a](https://github.com/antdv-pro/antdv-pro/commit/e81849a)) +- Add gitee ([371e5ea](https://github.com/antdv-pro/antdv-pro/commit/371e5ea)) +- BubbleCanvas ts type ([3fdd93b](https://github.com/antdv-pro/antdv-pro/commit/3fdd93b)) +- Change ([49a95a4](https://github.com/antdv-pro/antdv-pro/commit/49a95a4)) +- Change ([70a8034](https://github.com/antdv-pro/antdv-pro/commit/70a8034)) +- Ignore component.d.ts ([4bbd074](https://github.com/antdv-pro/antdv-pro/commit/4bbd074)) +- Ignore component.d.ts ([2ecae5b](https://github.com/antdv-pro/antdv-pro/commit/2ecae5b)) +- Delete excess ([aae0a7f](https://github.com/antdv-pro/antdv-pro/commit/aae0a7f)) +- Del basic table demo ([211e0a4](https://github.com/antdv-pro/antdv-pro/commit/211e0a4)) +- Add account routerlink ([403d3a5](https://github.com/antdv-pro/antdv-pro/commit/403d3a5)) +- Add space to advance form ([80faa7e](https://github.com/antdv-pro/antdv-pro/commit/80faa7e)) +- Change format ([4af5f56](https://github.com/antdv-pro/antdv-pro/commit/4af5f56)) +- Change ([ac15c2a](https://github.com/antdv-pro/antdv-pro/commit/ac15c2a)) +- Font optimization ([18a31b7](https://github.com/antdv-pro/antdv-pro/commit/18a31b7)) +- Change version ([692bd7c](https://github.com/antdv-pro/antdv-pro/commit/692bd7c)) +- Change version ([d45e443](https://github.com/antdv-pro/antdv-pro/commit/d45e443)) +- Change version ([bdafa15](https://github.com/antdv-pro/antdv-pro/commit/bdafa15)) +- Change version ([199bf5d](https://github.com/antdv-pro/antdv-pro/commit/199bf5d)) +- Change version ([6eee4de](https://github.com/antdv-pro/antdv-pro/commit/6eee4de)) +- Change version ([c696770](https://github.com/antdv-pro/antdv-pro/commit/c696770)) +- Change pnpm-lock version ([caedc74](https://github.com/antdv-pro/antdv-pro/commit/caedc74)) +- Change ([747b6c2](https://github.com/antdv-pro/antdv-pro/commit/747b6c2)) +- 修改侧边菜单超出显示样式 ([368ffe0](https://github.com/antdv-pro/antdv-pro/commit/368ffe0)) +- Fix console error ([a08f428](https://github.com/antdv-pro/antdv-pro/commit/a08f428)) +- Use auto import ([4be2127](https://github.com/antdv-pro/antdv-pro/commit/4be2127)) +- **release:** V0.1.0 ([f6f3781](https://github.com/antdv-pro/antdv-pro/commit/f6f3781)) +- Change ([290413e](https://github.com/antdv-pro/antdv-pro/commit/290413e)) +- Change ([80b5b74](https://github.com/antdv-pro/antdv-pro/commit/80b5b74)) +- Change version ([c31dea8](https://github.com/antdv-pro/antdv-pro/commit/c31dea8)) + +### 🎨 Styles + +- Fix card-list style ([6b68f8d](https://github.com/antdv-pro/antdv-pro/commit/6b68f8d)) +- Login change ([4e74769](https://github.com/antdv-pro/antdv-pro/commit/4e74769)) +- Fix style ([8d8a96e](https://github.com/antdv-pro/antdv-pro/commit/8d8a96e)) +- Fix style ([05d072e](https://github.com/antdv-pro/antdv-pro/commit/05d072e)) + +### 🤖 CI + +- Add lint ([a6cbed7](https://github.com/antdv-pro/antdv-pro/commit/a6cbed7)) + +### ❤️ Contributors + +- Aibayanyu +- Kirk Lin ([@kirklin](http://github.com/kirklin)) +- Liosummer <2447629916@qq.com> +- Windlil ([@windlil](http://github.com/windlil)) +- Aibayanyu20 +- Konv Suu <2583695112@qq.com> +- AutismSuperman +- 杜天宇 <17862705909@163.com> +- AShu-guo +- Sun1090 ([@Sun1090](http://github.com/Sun1090)) +- Undefined ([@undefined-moe](http://github.com/undefined-moe)) +- LC1 +- Yizhankui <2669587581@qq.com> +- 张浩杰 ([@HavocZhang](http://github.com/HavocZhang)) +- 一个小瘪三 <10948399+menon-qiqi@user.noreply.gitee.com> +- Qi Yuhang +- Qyh +- Zev Zhu +- Adekang + +## v0.1.0 + +[compare changes](https://github.com/antdv-pro/antdv-pro/compare/v0.0.19...v0.1.0) + +### 🚀 Enhancements + +- Add exception page ([e857135](https://github.com/antdv-pro/antdv-pro/commit/e857135)) +- Add mock server ([2fbecaf](https://github.com/antdv-pro/antdv-pro/commit/2fbecaf)) +- 增加结果页路由 ([14d20f8](https://github.com/antdv-pro/antdv-pro/commit/14d20f8)) +- 增加结果页i18n配置 ([0f51c7d](https://github.com/antdv-pro/antdv-pro/commit/0f51c7d)) +- 同步结果页成功页 #28 ([#28](https://github.com/antdv-pro/antdv-pro/issues/28)) +- 增加结果页路由 #29 ([#29](https://github.com/antdv-pro/antdv-pro/issues/29)) +- Add new result page ([ad6463e](https://github.com/antdv-pro/antdv-pro/commit/ad6463e)) +- Add spinning loader to iframe ([c75a3b8](https://github.com/antdv-pro/antdv-pro/commit/c75a3b8)) +- Add spinning loader to iframe ([888d183](https://github.com/antdv-pro/antdv-pro/commit/888d183)) +- Add login redirect ([70293ed](https://github.com/antdv-pro/antdv-pro/commit/70293ed)) +- 增加路由 ([ef72da5](https://github.com/antdv-pro/antdv-pro/commit/ef72da5)) +- 页面 ([39ff6d5](https://github.com/antdv-pro/antdv-pro/commit/39ff6d5)) +- 路由配置 ([2af830c](https://github.com/antdv-pro/antdv-pro/commit/2af830c)) +- Picocolors custom terminal ([2aca5fd](https://github.com/antdv-pro/antdv-pro/commit/2aca5fd)) +- Add basic profile i18n config ([fb2ac66](https://github.com/antdv-pro/antdv-pro/commit/fb2ac66)) +- Add basic profile router ([1e8b9e4](https://github.com/antdv-pro/antdv-pro/commit/1e8b9e4)) +- Add basic profile i18n config ([cba4ba1](https://github.com/antdv-pro/antdv-pro/commit/cba4ba1)) +- 新增列表数据接口 ([11b7c89](https://github.com/antdv-pro/antdv-pro/commit/11b7c89)) +- 新增列表数据请求方法 ([47bbd73](https://github.com/antdv-pro/antdv-pro/commit/47bbd73)) +- Add a tsconfig rule ([ebaee8d](https://github.com/antdv-pro/antdv-pro/commit/ebaee8d)) +- Basic-list page ([dea1394](https://github.com/antdv-pro/antdv-pro/commit/dea1394)) +- Add search list ([c95c6aa](https://github.com/antdv-pro/antdv-pro/commit/c95c6aa)) +- Add dynamic routes ([766b04e](https://github.com/antdv-pro/antdv-pro/commit/766b04e)) +- Init route config ([e9eb147](https://github.com/antdv-pro/antdv-pro/commit/e9eb147)) +- New page ([ea00f70](https://github.com/antdv-pro/antdv-pro/commit/ea00f70)) +- Login view ([b270521](https://github.com/antdv-pro/antdv-pro/commit/b270521)) +- I18n config ([f292469](https://github.com/antdv-pro/antdv-pro/commit/f292469)) +- Page ([89fca03](https://github.com/antdv-pro/antdv-pro/commit/89fca03)) +- Axios loading ([f60c4d7](https://github.com/antdv-pro/antdv-pro/commit/f60c4d7)) +- Loading text prop ([26d96b4](https://github.com/antdv-pro/antdv-pro/commit/26d96b4)) +- Route config ([51cba5d](https://github.com/antdv-pro/antdv-pro/commit/51cba5d)) +- Update version ([5222e8c](https://github.com/antdv-pro/antdv-pro/commit/5222e8c)) +- Account center page ([dfeaf09](https://github.com/antdv-pro/antdv-pro/commit/dfeaf09)) +- Account-center i18n config ([0c38c00](https://github.com/antdv-pro/antdv-pro/commit/0c38c00)) +- Add basic table routes ([d445c08](https://github.com/antdv-pro/antdv-pro/commit/d445c08)) +- Add basic table i18n config ([d0e3385](https://github.com/antdv-pro/antdv-pro/commit/d0e3385)) +- Add basic table demo ([ddb7c13](https://github.com/antdv-pro/antdv-pro/commit/ddb7c13)) +- Add static routes ([9f42e28](https://github.com/antdv-pro/antdv-pro/commit/9f42e28)) +- Account-settings page ([b5f1360](https://github.com/antdv-pro/antdv-pro/commit/b5f1360)) +- I18n config ([c50b840](https://github.com/antdv-pro/antdv-pro/commit/c50b840)) +- Add step-form router ([23603f2](https://github.com/antdv-pro/antdv-pro/commit/23603f2)) +- Add step-form pages ([40baabe](https://github.com/antdv-pro/antdv-pro/commit/40baabe)) +- Add footer-tool-bar components ([7552a18](https://github.com/antdv-pro/antdv-pro/commit/7552a18)) +- Add advanced form router ([3bf0624](https://github.com/antdv-pro/antdv-pro/commit/3bf0624)) +- Add task form ([a4c1c51](https://github.com/antdv-pro/antdv-pro/commit/a4c1c51)) +- Add advanced form ([2fc8cc2](https://github.com/antdv-pro/antdv-pro/commit/2fc8cc2)) +- Add components parent ([fc47099](https://github.com/antdv-pro/antdv-pro/commit/fc47099)) +- Add parent layout ([75f4fd7](https://github.com/antdv-pro/antdv-pro/commit/75f4fd7)) +- Feat list ([412da2d](https://github.com/antdv-pro/antdv-pro/commit/412da2d)) +- Add `unocss-preset-chinese`, `unocss-preset-ease` ([7e5b706](https://github.com/antdv-pro/antdv-pro/commit/7e5b706)) +- Add some files ([431b1eb](https://github.com/antdv-pro/antdv-pro/commit/431b1eb)) +- Add consult-table page ([41ef497](https://github.com/antdv-pro/antdv-pro/commit/41ef497)) +- Add field trend components ([a2ecae7](https://github.com/antdv-pro/antdv-pro/commit/a2ecae7)) +- Add introduce-row first demo ([7a7e540](https://github.com/antdv-pro/antdv-pro/commit/7a7e540)) +- Complete introduce-row demo ([659bcaf](https://github.com/antdv-pro/antdv-pro/commit/659bcaf)) +- Add antv/g2plot package ([41c742e](https://github.com/antdv-pro/antdv-pro/commit/41c742e)) +- Add part of sales-card demo ([ac18ff6](https://github.com/antdv-pro/antdv-pro/commit/ac18ff6)) +- Delete useless code ([acbf99b](https://github.com/antdv-pro/antdv-pro/commit/acbf99b)) +- Complete sales-card demo ([ea9d0cd](https://github.com/antdv-pro/antdv-pro/commit/ea9d0cd)) +- Add 修改侧边栏可伸缩按钮位置 ([12cc61d](https://github.com/antdv-pro/antdv-pro/commit/12cc61d)) +- Add 修改侧边伸缩默认显示 ([4aebe57](https://github.com/antdv-pro/antdv-pro/commit/4aebe57)) +- Add 控制伸缩功能只在侧边布局生效 ([df0738c](https://github.com/antdv-pro/antdv-pro/commit/df0738c)) +- Complete number-info and top-search demo ([b0ceb48](https://github.com/antdv-pro/antdv-pro/commit/b0ceb48)) +- Complete proportion-sales demo ([be3b597](https://github.com/antdv-pro/antdv-pro/commit/be3b597)) +- Complete offline-data demo ([97cf972](https://github.com/antdv-pro/antdv-pro/commit/97cf972)) +- Reconstruct file location ([181e9ba](https://github.com/antdv-pro/antdv-pro/commit/181e9ba)) +- Add part of monitor demo ([0f3ca9d](https://github.com/antdv-pro/antdv-pro/commit/0f3ca9d)) +- Complete part of monitor demo ([f671f56](https://github.com/antdv-pro/antdv-pro/commit/f671f56)) +- Add part of workplace demo ([32958ac](https://github.com/antdv-pro/antdv-pro/commit/32958ac)) +- Complete workplace demo ([257c6b5](https://github.com/antdv-pro/antdv-pro/commit/257c6b5)) +- Complete monitor demo ([7b84c28](https://github.com/antdv-pro/antdv-pro/commit/7b84c28)) +- Change filename ([57a9bb0](https://github.com/antdv-pro/antdv-pro/commit/57a9bb0)) +- Add storage locale ([bf52bbb](https://github.com/antdv-pro/antdv-pro/commit/bf52bbb)) +- Support dynamic router close #93 ([#93](https://github.com/antdv-pro/antdv-pro/issues/93)) +- Add virtual list ([069f27f](https://github.com/antdv-pro/antdv-pro/commit/069f27f)) +- Change text ([4dccc14](https://github.com/antdv-pro/antdv-pro/commit/4dccc14)) + +### 🔥 Performance + +- 优化单独监听路由浪费渲染性能 ([05a3d79](https://github.com/antdv-pro/antdv-pro/commit/05a3d79)) + +### 🩹 Fixes + +- Fix iframe transition error ([57311cc](https://github.com/antdv-pro/antdv-pro/commit/57311cc)) +- Delete scroll ([a373517](https://github.com/antdv-pro/antdv-pro/commit/a373517)) +- Add script toJS ([1601334](https://github.com/antdv-pro/antdv-pro/commit/1601334)) +- Result page i18n step2-operator ([c900087](https://github.com/antdv-pro/antdv-pro/commit/c900087)) +- Success result i18n ([412dfeb](https://github.com/antdv-pro/antdv-pro/commit/412dfeb)) +- Router i18n ([d00cf4e](https://github.com/antdv-pro/antdv-pro/commit/d00cf4e)) +- Success page type error ([71aa9ec](https://github.com/antdv-pro/antdv-pro/commit/71aa9ec)) +- Success page type error ([451afd0](https://github.com/antdv-pro/antdv-pro/commit/451afd0)) +- Remove console log ([8c8a2db](https://github.com/antdv-pro/antdv-pro/commit/8c8a2db)) +- 修改路由错误 ([0d5e75c](https://github.com/antdv-pro/antdv-pro/commit/0d5e75c)) +- Dark theme error ([2c08422](https://github.com/antdv-pro/antdv-pro/commit/2c08422)) +- Commit-msg-lint ([2a91560](https://github.com/antdv-pro/antdv-pro/commit/2a91560)) +- Commit-msg-lint ([8e47aae](https://github.com/antdv-pro/antdv-pro/commit/8e47aae)) +- Commit-msg-lint, remove trailing comma ([e578774](https://github.com/antdv-pro/antdv-pro/commit/e578774)) +- 修改错误配置 ([0dc9048](https://github.com/antdv-pro/antdv-pro/commit/0dc9048)) +- Change dir name ([288e11c](https://github.com/antdv-pro/antdv-pro/commit/288e11c)) +- Fix qrcode ([1086a8d](https://github.com/antdv-pro/antdv-pro/commit/1086a8d)) +- Dark mode change error ([67ad773](https://github.com/antdv-pro/antdv-pro/commit/67ad773)) +- Lint error ([f064f70](https://github.com/antdv-pro/antdv-pro/commit/f064f70)) +- Build error ([1c13da1](https://github.com/antdv-pro/antdv-pro/commit/1c13da1)) +- Fix top mode header appear scroll && iframe is not fullscreen ([d07e846](https://github.com/antdv-pro/antdv-pro/commit/d07e846)) +- Change ([6e07288](https://github.com/antdv-pro/antdv-pro/commit/6e07288)) +- Build error ([8563a69](https://github.com/antdv-pro/antdv-pro/commit/8563a69)) +- Menu icon #53 ([#53](https://github.com/antdv-pro/antdv-pro/issues/53)) +- Login theme layout ([63e26a7](https://github.com/antdv-pro/antdv-pro/commit/63e26a7)) +- Rename enum file ([49edbc0](https://github.com/antdv-pro/antdv-pro/commit/49edbc0)) +- Login view change ([e861e47](https://github.com/antdv-pro/antdv-pro/commit/e861e47)) +- Fix page not full ([0caac29](https://github.com/antdv-pro/antdv-pro/commit/0caac29)) +- Router component ([a6e0fcf](https://github.com/antdv-pro/antdv-pro/commit/a6e0fcf)) +- Optimization level ([219646c](https://github.com/antdv-pro/antdv-pro/commit/219646c)) +- I18n symbol #60 ([#60](https://github.com/antdv-pro/antdv-pro/issues/60)) +- Login panel ([34cf8ae](https://github.com/antdv-pro/antdv-pro/commit/34cf8ae)) +- Validate not take effect ([baae131](https://github.com/antdv-pro/antdv-pro/commit/baae131)) +- Validate not take effect ([d132d04](https://github.com/antdv-pro/antdv-pro/commit/d132d04)) +- Add page container ([706087c](https://github.com/antdv-pro/antdv-pro/commit/706087c)) +- Type ([7d8ccde](https://github.com/antdv-pro/antdv-pro/commit/7d8ccde)) +- 将新消息通知中的三个切换按钮的checked状态单独定义 ([c7a44b7](https://github.com/antdv-pro/antdv-pro/commit/c7a44b7)) +- Footer tool bar support dark mode ([aae8cb3](https://github.com/antdv-pro/antdv-pro/commit/aae8cb3)) +- Fix radio-group ([e1a75b1](https://github.com/antdv-pro/antdv-pro/commit/e1a75b1)) +- Fix generate route ([b033198](https://github.com/antdv-pro/antdv-pro/commit/b033198)) +- Fix generate route ([41b50a1](https://github.com/antdv-pro/antdv-pro/commit/41b50a1)) +- Menu hidden header is not full close #71 ([#71](https://github.com/antdv-pro/antdv-pro/issues/71)) +- Build error close #75 ([#75](https://github.com/antdv-pro/antdv-pro/issues/75)) +- Collapsed trigger ([ff8ae6c](https://github.com/antdv-pro/antdv-pro/commit/ff8ae6c)) +- Account-setting avatar size ([069ad16](https://github.com/antdv-pro/antdv-pro/commit/069ad16)) +- Base-loading ui ([dfed9a9](https://github.com/antdv-pro/antdv-pro/commit/dfed9a9)) +- Modify route name to keep unique and basic form path ([69be62f](https://github.com/antdv-pro/antdv-pro/commit/69be62f)) +- Issues#68 ([#68](https://github.com/antdv-pro/antdv-pro/issues/68)) +- Add 删除打印和修正伸缩图标大小 ([22e74a8](https://github.com/antdv-pro/antdv-pro/commit/22e74a8)) +- Add pagination ([a04e223](https://github.com/antdv-pro/antdv-pro/commit/a04e223)) +- Issue#81 ([#81](https://github.com/antdv-pro/antdv-pro/issues/81)) +- Mock server error close #86 ([#86](https://github.com/antdv-pro/antdv-pro/issues/86)) +- Fix win and macos server env ([91bc884](https://github.com/antdv-pro/antdv-pro/commit/91bc884)) +- Dark mode ([1e31431](https://github.com/antdv-pro/antdv-pro/commit/1e31431)) +- Build error ([65bda0e](https://github.com/antdv-pro/antdv-pro/commit/65bda0e)) +- Build error ([3c5bc4b](https://github.com/antdv-pro/antdv-pro/commit/3c5bc4b)) +- Locale storage optimize ([a49d090](https://github.com/antdv-pro/antdv-pro/commit/a49d090)) +- Chart support destroy ([65bdfc7](https://github.com/antdv-pro/antdv-pro/commit/65bdfc7)) +- Change i18n ([8c3f517](https://github.com/antdv-pro/antdv-pro/commit/8c3f517)) +- Build error ([50b5773](https://github.com/antdv-pro/antdv-pro/commit/50b5773)) +- Chart auto fit ([f03bb48](https://github.com/antdv-pro/antdv-pro/commit/f03bb48)) +- Login form logo container layout ([a87df0d](https://github.com/antdv-pro/antdv-pro/commit/a87df0d)) +- Set autocomplete to off ([8ae0024](https://github.com/antdv-pro/antdv-pro/commit/8ae0024)) +- Switch menu stuck & stopped ([8173341](https://github.com/antdv-pro/antdv-pro/commit/8173341)) +- Add router key ([91256e3](https://github.com/antdv-pro/antdv-pro/commit/91256e3)) +- Change route view ([411a4b5](https://github.com/antdv-pro/antdv-pro/commit/411a4b5)) +- Change ([e2d046e](https://github.com/antdv-pro/antdv-pro/commit/e2d046e)) + +### 💅 Refactors + +- Change files name ([16f7940](https://github.com/antdv-pro/antdv-pro/commit/16f7940)) + +### 🏡 Chore + +- Add wx group jpg ([fc6481c](https://github.com/antdv-pro/antdv-pro/commit/fc6481c)) +- Update wx group ([2b32fa5](https://github.com/antdv-pro/antdv-pro/commit/2b32fa5)) +- Update dependencies for Nitro as devDependencies ([8480b27](https://github.com/antdv-pro/antdv-pro/commit/8480b27)) +- Update dependencies for Nitro as devDependencies ([6fbafac](https://github.com/antdv-pro/antdv-pro/commit/6fbafac)) +- Remove docs script ([18cf8f5](https://github.com/antdv-pro/antdv-pro/commit/18cf8f5)) +- Add deps ([a014040](https://github.com/antdv-pro/antdv-pro/commit/a014040)) +- Add commit check ([ad43dc1](https://github.com/antdv-pro/antdv-pro/commit/ad43dc1)) +- Add .gitattributes ([cc821f4](https://github.com/antdv-pro/antdv-pro/commit/cc821f4)) +- 删减路径多余空格 ([1617c99](https://github.com/antdv-pro/antdv-pro/commit/1617c99)) +- Change ci ([e4638d8](https://github.com/antdv-pro/antdv-pro/commit/e4638d8)) +- Add start date ([3de8ae4](https://github.com/antdv-pro/antdv-pro/commit/3de8ae4)) +- Types ([fd2f05f](https://github.com/antdv-pro/antdv-pro/commit/fd2f05f)) +- Chore ([6838cab](https://github.com/antdv-pro/antdv-pro/commit/6838cab)) +- Change ([d26935d](https://github.com/antdv-pro/antdv-pro/commit/d26935d)) +- Add current route ([1322f42](https://github.com/antdv-pro/antdv-pro/commit/1322f42)) +- Change components ([29d86c2](https://github.com/antdv-pro/antdv-pro/commit/29d86c2)) +- Change name ([85cabdb](https://github.com/antdv-pro/antdv-pro/commit/85cabdb)) +- **composables/loading:** Loading param note ([e81849a](https://github.com/antdv-pro/antdv-pro/commit/e81849a)) +- Add gitee ([371e5ea](https://github.com/antdv-pro/antdv-pro/commit/371e5ea)) +- BubbleCanvas ts type ([3fdd93b](https://github.com/antdv-pro/antdv-pro/commit/3fdd93b)) +- Change ([49a95a4](https://github.com/antdv-pro/antdv-pro/commit/49a95a4)) +- Change ([70a8034](https://github.com/antdv-pro/antdv-pro/commit/70a8034)) +- Ignore component.d.ts ([4bbd074](https://github.com/antdv-pro/antdv-pro/commit/4bbd074)) +- Ignore component.d.ts ([2ecae5b](https://github.com/antdv-pro/antdv-pro/commit/2ecae5b)) +- Delete excess ([aae0a7f](https://github.com/antdv-pro/antdv-pro/commit/aae0a7f)) +- Del basic table demo ([211e0a4](https://github.com/antdv-pro/antdv-pro/commit/211e0a4)) +- Add account routerlink ([403d3a5](https://github.com/antdv-pro/antdv-pro/commit/403d3a5)) +- Add space to advance form ([80faa7e](https://github.com/antdv-pro/antdv-pro/commit/80faa7e)) +- Change format ([4af5f56](https://github.com/antdv-pro/antdv-pro/commit/4af5f56)) +- Change ([ac15c2a](https://github.com/antdv-pro/antdv-pro/commit/ac15c2a)) +- Font optimization ([18a31b7](https://github.com/antdv-pro/antdv-pro/commit/18a31b7)) +- Change version ([692bd7c](https://github.com/antdv-pro/antdv-pro/commit/692bd7c)) +- Change version ([d45e443](https://github.com/antdv-pro/antdv-pro/commit/d45e443)) +- Change version ([bdafa15](https://github.com/antdv-pro/antdv-pro/commit/bdafa15)) +- Change version ([199bf5d](https://github.com/antdv-pro/antdv-pro/commit/199bf5d)) +- Change version ([6eee4de](https://github.com/antdv-pro/antdv-pro/commit/6eee4de)) +- Change version ([c696770](https://github.com/antdv-pro/antdv-pro/commit/c696770)) +- Change pnpm-lock version ([caedc74](https://github.com/antdv-pro/antdv-pro/commit/caedc74)) +- Change ([747b6c2](https://github.com/antdv-pro/antdv-pro/commit/747b6c2)) +- 修改侧边菜单超出显示样式 ([368ffe0](https://github.com/antdv-pro/antdv-pro/commit/368ffe0)) +- Fix console error ([a08f428](https://github.com/antdv-pro/antdv-pro/commit/a08f428)) +- Use auto import ([4be2127](https://github.com/antdv-pro/antdv-pro/commit/4be2127)) + +### 🎨 Styles + +- Fix card-list style ([6b68f8d](https://github.com/antdv-pro/antdv-pro/commit/6b68f8d)) +- Login change ([4e74769](https://github.com/antdv-pro/antdv-pro/commit/4e74769)) +- Fix style ([8d8a96e](https://github.com/antdv-pro/antdv-pro/commit/8d8a96e)) +- Fix style ([05d072e](https://github.com/antdv-pro/antdv-pro/commit/05d072e)) + +### 🤖 CI + +- Add lint ([a6cbed7](https://github.com/antdv-pro/antdv-pro/commit/a6cbed7)) + +### ❤️ Contributors + +- Liosummer <2447629916@qq.com> +- Windlil ([@windlil](http://github.com/windlil)) +- Aibayanyu20 +- Aibayanyu +- Konv Suu <2583695112@qq.com> +- AutismSuperman +- 杜天宇 <17862705909@163.com> +- AShu-guo +- Sun1090 ([@Sun1090](http://github.com/Sun1090)) +- Undefined ([@undefined-moe](http://github.com/undefined-moe)) +- LC1 +- Kirk Lin ([@kirklin](http://github.com/kirklin)) +- Yizhankui <2669587581@qq.com> +- 张浩杰 ([@HavocZhang](http://github.com/HavocZhang)) +- 一个小瘪三 <10948399+menon-qiqi@user.noreply.gitee.com> +- Qi Yuhang +- Qyh +- Zev Zhu +- Adekang + +## v0.0.19 + +[compare changes](https://undefined/undefined/compare/v0.0.18...v0.0.19) + +### 🚀 Enhancements + +- Add copy setting config (7677dbf) +- Add LICENSE (97dadb0) +- Support does not depend on name to keep alive (82394bb) +- Add github and doc link (d80f78a) + +### 🩹 Fixes + +- Eslint warning close #13 (#13) + +### 🏡 Chore + +- Change version (215b0a0) +- Change version (37b121c) +- Fix conflict (5b6463b) +- Change eslint ignore (38cad2c) + +### ❤️ Contributors + +- Aibayanyu20 +- Aibayanyu + +## v0.0.18 + +[compare changes](https://undefined/undefined/compare/v0.0.17...v0.0.18) + +### 🚀 Enhancements + +- Global config (e314b34) +- Support customDev mode (11c6c06) +- Add dynamic animation list close #10 (#10) +- Add Dockerfile (0619785) + +### 🩹 Fixes + +- Loading error (94efff8) +- Delete modal typo (0c3f7c3) +- Header content overflow issue (e7dd087) +- Change dockerfile (4ba22e5) +- Change api (059549e) + +### 🏡 Chore + +- Change version (46b422b) +- Change version (af2549e) +- Change readme (4d9221c) + +### ❤️ Contributors + +- Aibayanyu20 +- Kai + +## v0.0.17 + +[compare changes](https://undefined/undefined/compare/v0.0.16...v0.0.17) + +### 🚀 Enhancements + +- Add useMessage && useModal && useNotifaction replace message && modal && notifaction (d0c031a) +- Replace request config (4be8824) + +### 🩹 Fixes + +- Typo (14c93ef) +- Typo (ca14d96) + +### ❤️ Contributors + +- Aibayanyu20 + +## v0.0.16 + +[compare changes](https://undefined/undefined/compare/v0.0.15...v0.0.16) + +### 🚀 Enhancements + +- Update version (2d7162d) + +### 🩹 Fixes + +- Remove tab more (4b4b092) +- Style warning (f6a863c) +- Fix split error (ad77483) + +### 🏡 Chore + +- Update version (e231627) +- Change version (4223747) + +### ❤️ Contributors + +- Aibayanyu +- Aibayanyu20 + +## v0.0.15 + +[compare changes](https://undefined/undefined/compare/v0.0.14...v0.0.15) + + +### 🚀 Enhancements + + - Add locale (7adbce1) + - Menu support i18n (74baf00) + - Title support title (aea9fd9) + +### 🩹 Fixes + + - Fix split menu change error (da34522) + - Menu title error (a13462e) + - Menu title error (5a70263) + +### 🏡 Chore + + - Change version (f327491) + +### ❤️ Contributors + +- Aibayanyu20 + +## v0.0.14 + +[compare changes](https://undefined/undefined/compare/v0.0.13...v0.0.14) + + +### 🚀 Enhancements + + - Support split menu mode (86a9273) + +### 🩹 Fixes + + - Context menu refresh current (2d8dca4) + - Optimize the animation effect (f0ed9a3) + - HeaderHeight is not take effect (73ca87b) + - Fix css error (6fe1276) + +### ❤️ Contributors + +- Aibayanyu20 +- Aibayanyu + +## v0.0.13 + +[compare changes](https://undefined/undefined/compare/v0.0.12...v0.0.13) + + +### 🚀 Enhancements + + - Support dynamic routes (2164119) + - Support dynamic load way in env (5dd538d) + +### 🏡 Chore + + - Add readme (5d048e3) + +### ❤️ Contributors + +- Aibayanyu + +## v0.0.12 + +[compare changes](https://undefined/undefined/compare/v0.0.11...v0.0.12) + + +### 🚀 Enhancements + + - Add access mode (e89acfe) + +### 🩹 Fixes + + - Loading experience optimization (136aa7b) + - Change loading in router guard (8479d60) + - Typo (29430fa) + - Typo (6358062) + - Loading delay (c842062) + - Query dom (46cfb14) + - Logout cache (1e18c85) + +### 🏡 Chore + + - Bump version (b20d4b1) + - Change version (afe7e7f) + - Fix auto import components ts types (a68d41c) + - Change plugin version (32edfae) + +### ❤️ Contributors + +- Aibayanyu +- Aibayanyu20 +- Kai + +## v0.0.11 + +[compare changes](https://undefined/undefined/compare/v0.0.10...v0.0.11) + + +### 🚀 Enhancements + + - Add request control token (43bc593) + - Add request control token (f71c2e4) + - Support accordion mode (6d9c8df) + +### 🩹 Fixes + + - Typo (96f8220) + - Store state error (aa6c605) + +### 🏡 Chore + + - Migrate package version (6486f57) + - Change (a1ee980) + - Update version (6863493) + - Update version (69e8b1f) + - Change vue-i18n (7923e2b) + - Update version (5d74cd6) + +### 🤖 CI + + - Add issue close workflow (5278a99) + +### ❤️ Contributors + +- Zev Zhu +- Aibayanyu +- 杜天宇 <17862705909@163.com> +- Aibayanyu20 + +## v0.0.10 + +[compare changes](https://undefined/undefined/compare/v0.0.9...v0.0.10) + + +### 🩹 Fixes + + - Fix close left and right error (eea8854) + +### ❤️ Contributors + +- Aibayanyu + +## v0.0.9 + +[compare changes](https://undefined/undefined/compare/v0.0.8...v0.0.9) + + +### 🚀 Enhancements + + - Add context right menu (390022d) + - Use size small (ac962b0) + - Add contenxt menu (f720551) + +### 🩹 Fixes + + - Height error (ae945b9) + +### 🏡 Chore + + - Change author (3faac73) + +### 🤖 CI + + - Rename package.json (4bd1cde) + +### ❤️ Contributors + +- Aibayanyu +- Zhuzhengjian +- Zev Zhu + +## v0.0.8 + +[compare changes](https://undefined/undefined/compare/v0.0.7...v0.0.8) + + +### 🚀 Enhancements + + - Add pagecontainer (f3ecd48) + +### 🩹 Fixes + + - Color primary (661f7b3) + +### ❤️ Contributors + +- Aibayanyu + +## v0.0.7 + +[compare changes](https://undefined/undefined/compare/v0.0.6...v0.0.7) + + +### 🩹 Fixes + + - Import error (1ba59d5) + - Rename (9362480) + +### 🏡 Chore + + - Migrate version (1eebf00) + +### 🤖 CI + + - Change (5a12b81) + +### ❤️ Contributors + +- Aibayanyu + +## v0.0.6 + +[compare changes](https://undefined/undefined/compare/v0.0.5...v0.0.6) + + +### 🏡 Chore + + - Migrate ant-design-vue (0d02def) + - Migrate version (946b304) + +### ❤️ Contributors + +- Aibayanyu + +## v0.0.5 + +[compare changes](https://undefined/undefined/compare/v0.0.4...v0.0.5) + + +### 🚀 Enhancements + + - Add select lang (0bc02ae) + +### 🏡 Chore + + - Change (68464cb) + +### ❤️ Contributors + +- Aibayanyu + +## v0.0.4 + +[compare changes](https://undefined/undefined/compare/v0.0.3...v0.0.4) + + +### 🏡 Chore + + - Change pkg (65d4d49) + - Change (45b44fb) + - Change (7608a96) + +### ❤️ Contributors + +- Aibayanyu ([@mist-design](http://github.com/mist-design)) + +## v0.0.3 + +[compare changes](https://undefined/undefined/compare/v0.0.2...v0.0.3) + + +### 🚀 Enhancements + + - Add keepalive config (0021ed4) + +### 🩹 Fixes + + - Remove transition (6e1b836) + - Transition error (25bed59) + - Analysis is not take effect (ef0e5ec) + +### 🏡 Chore + + - Change version (03787ae) + - Change version (5e161ce) + +### 🤖 CI + + - Add workflow (438b594) + +### ❤️ Contributors + +- Aibayanyu ([@mist-design](http://github.com/mist-design)) + +## vtrue + +[compare changes](https://undefined/undefined/compare/v0.0.2...vtrue) + + +### 🚀 Enhancements + + - Add keepalive config (0021ed4) + +### 🩹 Fixes + + - Remove transition (6e1b836) + - Transition error (25bed59) + - Analysis is not take effect (ef0e5ec) + +### 🤖 CI + + - Add workflow (438b594) + +### ❤️ Contributors + +- Aibayanyu ([@mist-design](http://github.com/mist-design)) + diff --git a/frontend/Dockerfile b/frontend/Dockerfile new file mode 100644 index 0000000..8009d44 --- /dev/null +++ b/frontend/Dockerfile @@ -0,0 +1,8 @@ +FROM nginx + +RUN rm /etc/nginx/conf.d/default.conf + +ADD default.conf /etc/nginx/conf.d/default.conf +COPY dist/ /usr/share/nginx/html/ +RUN chmod 775 -R /usr/share/nginx/html +EXPOSE 80/tcp \ No newline at end of file diff --git a/frontend/LICENSE b/frontend/LICENSE new file mode 100644 index 0000000..06cef5f --- /dev/null +++ b/frontend/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) [2023] [Antdv Pro] + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/frontend/README.md b/frontend/README.md new file mode 100644 index 0000000..ab42a5c --- /dev/null +++ b/frontend/README.md @@ -0,0 +1,98 @@ +
VbenAdmin Logo

+ +

Antdv Pro

+ +
+ +![gitee](https://gitee.com/antdv-pro/antdv-pro/badge/star.svg) +![github](https://img.shields.io/github/stars/antdv-pro/antdv-pro?style=social) + +**English** | [简体中文](./README.zh-CN.md) + +## Introduction + +AntdvPro is a complete set of enterprise-level mid-backend front-end/design solutions based on Vue3, Vite4, ant-design-vue4, Pinia, UnoCSS and Typescript. It refers to the design pattern of Ali react version antd-pro, using the latest and most popular The front-end technology stack has built-in dynamic routing, multi-theme, multi-layout and other functions, which can help you quickly build enterprise-level mid-background product prototypes. + +## Features + +* pnpm: Using the latest pnpm as a package management tool, it can greatly reduce the size of node_modules, speed up the installation speed of packages, and can also share dependencies to reduce disk usage. +* vite: vite as a front-end development tool, it can greatly speed up the start-up speed of the project, and also supports hot updates, which can greatly improve development efficiency. +* vue3: vue3.3.x as the front-end framework, the basic code is written in script-setup, with less code and low maintenance cost. +* nitro mock: Use nitro as the server's mock data, decoupled from the project, and more flexible and easy to use. +* ant-design-vue4: ant-design-vue4 as the UI framework, the author of admin-pro is also a core member of ant-design-vue, which can provide long-term maintenance support. +* pinia: pinia as a state management tool, it can greatly improve the readability and maintainability of the code, and also supports Typescript. +* UnoCSS: Atomic CSS framework, reduce the troubles caused by thinking about some common class names, and improve our development efficiency. +* Code specification: We have encapsulated a set of eslint-based code specification configuration files, which can be used out of the box to unify the problems brought by different teams. +* Theme: The design specifications of antd-pro of the react version are used, and a set of theme modes based on vue are developed. On this basis, some new functions are added to meet various different needs as much as possible. +* Request function: Based on axios, a set of request functions with complete types and some basic interceptor encapsulations are encapsulated. You only need to make corresponding implementation adjustments according to the requirements to meet the different needs of various projects. +* Mobile compatibility: We have tried our best to make the basic framework compatible with the mobile terminal mode, but because our main goal is the enterprise-level mid-background product, we have not made too much adaptation to the mobile terminal. If your project needs to adapt to the mobile terminal, you can refer to our code for corresponding adjustments. + +## Preview + +[antdv-pro](https://antdv-pro.com) - Test Account: admin/admin + +[antdv-pro-js](https://github.com/antdv-pro/antdv-pro/tree/feat-js) - Javascript version + +[antdv-pro-js-gitee](https://gitee.com/antdv-pro/antdv-pro/tree/feat-js/) - Gitee Javascript version + +[antdv-pro-docs](https://docs.antdv-pro.com) - Documentation + +## Community + +QQ Group: apply wechat group + +Wechat: aibayanyu2022 + +Wechat Group: Add author WeChat + +Discord: [discord](https://discord.gg/tPb4G6gXmm) + +## Useage + +```bash + +# Install degit +npm i -g degit + +# Pull the code +degit antdv-pro/antdv-pro [your project name] + +# Switch to the project directory +cd [your project name] + +# Install +pnpm install + +# Development +pnpm dev +``` + +## Contribute + +We are very welcome to have you participate in our open source project. + +**Pull Request:** + +1. Fork code! +2. Create your own branch: `git checkout -b feat-xxxx` +3. Submit your changes: `git commit -am 'feat(function): add xxxxx'` +4. Push your branch: `git push origin feat-xxxx` +5. submit`pull request` + +Thank you to all the people who already contributed to antdv-pro! + + + + + +## Support + +If you like our project, you can support us by clicking the "Star" button in the upper right corner. Your support is my motivation. Thank you ~ + +Thanks to the open source project license provided by [Jetbrains](https://www.jetbrains.com/?from=antdv-pro). + +## Sponsor + +If you like our project, you can sponsor us to help us maintain the project better. + +[Alipay/Wechat](https://docs.antdv-pro.com/other/sponsor.html) diff --git a/frontend/README.zh-CN.md b/frontend/README.zh-CN.md new file mode 100644 index 0000000..2348464 --- /dev/null +++ b/frontend/README.zh-CN.md @@ -0,0 +1,97 @@ +
VbenAdmin Logo

+ +

Antdv Pro

+ +
+ +![gitee](https://gitee.com/antdv-pro/antdv-pro/badge/star.svg) +![github](https://img.shields.io/github/stars/antdv-pro/antdv-pro?style=social) + +[English](./README.md) | **简体中文** + +## 介绍 + +AntdvPro是一个基于Vue3、Vite4、ant-design-vue4、Pinia、UnoCSS和Typescript的一整套企业级中后台前端/设计解决方案,它参考了阿里react版本antd-pro的设计模式,使用了最新最流行的前端技术栈,内置了动态路由、多主题、多布局等功能,可以帮助你快速搭建企业级中后台产品原型。 + +## 特性 + +* pnpm:使用了最新的pnpm作为包管理工具,它可以大大减少node_modules的体积,加快包的安装速度,同时还可以共享依赖,减少磁盘占用。 +* vite:vite作为前端开发工具,它可以大大加快项目的启动速度,同时还支持热更新,可以大大提高开发效率。 +* vue3:vue3.3.x作为前端框架,基础代码全部使用script-setup的写法,代码量少维护成本低。 +* nitro mock:采用nitro作为服务端的mock数据,从工程中解耦处理,更加灵活易用。 +* ant-design-vue4:ant-design-vue4作为UI框架,admin-pro的作者也是ant-design-vue的核心成员,可提供长期的维护支持。 +* pinia:pinia作为状态管理工具,它可以大大提高代码的可读性和可维护性,同时还支持Typescript。 +* UnoCSS:原子化的CSS框架,减少我们去想一些通用类名带来的烦恼,提升我们的开发效率。 +* 代码规范:我们封装了一套基于eslint的代码规范配置文件,开箱即用,统一不同团队所带来的问题。 +* 主题:延用了react版本的antd-pro的设计规范,开发了一套基于vue的主题模式,在此基础上增加了一些新的功能,尽可能的满足各种不同的需求。 +* 请求函数:基于axios封装了一套具有完善类型的请求函数,以及一些基础的拦截器的封装,只需要按照需求做对应的实现调整就能满足各种项目带来的不一样的需求。 +* 移动端兼容:基础框架部分我们尽可能的对移动端的模式进行了兼容处理,但是由于我们的主要目标是企业级中后台产品,所以我们并没有对移动端做过多的适配,如果你的项目需要移动端的适配,可以参考我们的代码进行相应的调整。 + +## 演示 + +[antdv-pro](https://antdv-pro.com) - 测试账号:admin/admin + +[antdv-pro-js](https://github.com/antdv-pro/antdv-pro/tree/feat-js) - JS版本 + +[antdv-pro-js-gitee](https://gitee.com/antdv-pro/antdv-pro/tree/feat-js/) - Gitee JS 版本 + +[antdv-pro-docs](https://docs.antdv-pro.com) - 在线文档地址 + +## 社区 + +QQ群: 申请微信群 + +微信: 已经被广告闹麻了自己控制台 Console解密 atob("YWliYXlhbnl1MjAyMg==") 再有广告就对不起大家了,gitee删库不做gitee仓库了 + +Discord: [discord](https://discord.gg/tPb4G6gXmm) + +## 使用 + +```bash + +# 安装degit +npm i -g degit + +# 拉取代码 +degit antdv-pro/antdv-pro [your project name] + +# 切换到项目目录 +cd [your project name] + +# 安装依赖 + +pnpm install + +# 启动项目 +pnpm dev +``` + +## 贡献 + +非常欢迎您参与到我们的开源项目中来~ + +**PR流程:** + +1. Fork 代码! +2. 创建自己的分支: `git checkout -b feat-xxxx` +3. 提交你的修改: `git commit -am 'feat(function): add xxxxx'` +4. 推送您的分支: `git push origin feat-xxxx` +5. 提交`pull request` + +感谢所有为`antdv-pro`做出贡献的小伙伴儿们! + + + + + +## 支持 + +如果你觉得这个项目对你有帮助,你可以点右上角 "Star" 支持一下,你的支持就是我的动力,谢谢~ + +感谢[Jetbrains](https://www.jetbrains.com/?from=antdv-pro).提供的开源项目许可证支持 + +## 赞助 + +如果你觉得这个项目对你有帮助,你可以点击下方链接对我进行赞助,谢谢~ + +[赞助](https://docs.antdv-pro.com/other/sponsor.html) diff --git a/frontend/default.conf b/frontend/default.conf new file mode 100644 index 0000000..905cc3f --- /dev/null +++ b/frontend/default.conf @@ -0,0 +1,45 @@ +server { + listen 80; + server_name 150.158.236.152; # 替换为你的服务器 IP/域名 + client_max_body_size 100M; # 全局生效的文件上传大小限制 + + # 日志配置 + access_log /var/log/nginx/front-access.log main; + error_log /var/log/nginx/front-error.log warn; + + # gzip 压缩(保留原有配置) + gzip on; + gzip_min_length 1k; + gzip_comp_level 9; + gzip_types text/plain text/css text/javascript application/json application/javascript application/x-javascript application/xml; + gzip_vary on; + gzip_disable "MSIE [1-6]\."; + + # 前端静态文件根目录(适配 Docker 挂载) + root /usr/share/nginx/html; + include /etc/nginx/mime.types; + + # 静态资源缓存优化 + location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ { + expires 7d; + add_header Cache-Control "public, max-age=604800"; + access_log off; + } + + # SPA 路由兜底 + location / { + try_files $uri $uri/ /index.html; + } + + # 错误页适配 SPA + error_page 404 500 502 503 504 /index.html; + + # 后端 API 代理(替换为实际地址) + location /api { + rewrite ^/api(.*)$ $1 break; + proxy_pass http://150.158.236.152:5221; # 你的 Flask 后端地址 + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + } +} \ No newline at end of file diff --git a/frontend/eslint.config.ts b/frontend/eslint.config.ts new file mode 100644 index 0000000..29c2f9c --- /dev/null +++ b/frontend/eslint.config.ts @@ -0,0 +1,21 @@ +import antfu from '@antfu/eslint-config' + +export default antfu({ + formatters: { + css: true, + }, + ignores: [ + 'types/auto-imports.d.ts', + 'types/components.d.ts', + 'public', + 'tsconfig.*.json', + 'tsconfig.json', + ], +}, { + rules: { + 'no-console': 0, + 'style/quote-props': 0, + 'unused-imports/no-unused-vars': 0, + 'ts/no-unused-expressions': 0, + }, +}) diff --git a/frontend/index.html b/frontend/index.html new file mode 100644 index 0000000..fab28bb --- /dev/null +++ b/frontend/index.html @@ -0,0 +1,22 @@ + + + + + + + + + + +
+ + + + diff --git a/frontend/package.json b/frontend/package.json new file mode 100644 index 0000000..b9d2d7f --- /dev/null +++ b/frontend/package.json @@ -0,0 +1,101 @@ +{ + "name": "antdv-pro", + "type": "module", + "version": "1.4.0", + "packageManager": "pnpm@10.17.1", + "author": "aibayanyu ", + "repository": "antdv-pro/antdv-pro", + "engines": { + "node": ">=20.15.0" + }, + "scripts": { + "dev": "vite --host", + "build": "vite build", + "clear:vercel": "rm -rf ./vercel.json", + "build:vercel": "run-s clear:vercel", + "start": "node dist/servers/app.mjs", + "preview": "vite preview", + "lint": "eslint src --fix", + "typecheck": "vue-tsc --noEmit", + "bump:patch": "changelogen --bump --output CHANGELOG.md --release", + "bump:minor": "changelogen --bump --output CHANGELOG.md --release --minor", + "bump:major": "changelogen --bump --output CHANGELOG.md --release --major", + "prepare": "husky", + "dir-tree": "esno ./scripts/dir-tree", + "gen:uno": "esno ./scripts/gen-unocss", + "toJS": "esno scripts/to-js" + }, + "dependencies": { + "@amap/amap-jsapi-loader": "^1.0.1", + "@ant-design/icons-vue": "^7.0.1", + "@antv/g2plot": "^2.4.35", + "@antv/l7": "^2.23.0", + "@ctrl/tinycolor": "^4.2.0", + "@v-c/utils": "^0.0.26", + "@vueuse/core": "^10.11.1", + "ant-design-vue": "^4.2.6", + "axios": "^1.12.2", + "crypto-js": "^4.2.0", + "dayjs": "^1.11.18", + "echarts": "^6.0.0", + "lodash-es": "^4.17.21", + "mitt": "^3.0.1", + "pinia": "^2.3.1", + "sjcl": "^1.0.9", + "sm-crypto": "^0.4.0", + "vue": "^3.5.22", + "vue-i18n": "^9.14.5", + "vue-router": "^4.5.1" + }, + "devDependencies": { + "@antfu/eslint-config": "^5.4.1", + "@commitlint/cli": "^18.6.1", + "@commitlint/config-conventional": "^18.6.3", + "@mistjs/vite-plugin-preload": "^0.0.1", + "@types/crypto-js": "^4.2.2", + "@types/fs-extra": "^11.0.4", + "@types/lodash": "^4.17.20", + "@types/lodash-es": "^4.17.12", + "@types/node": "^20.19.17", + "@types/treeify": "^1.0.3", + "@vitejs/plugin-vue": "^6.0.1", + "@vitejs/plugin-vue-jsx": "^5.1.1", + "@vue/test-utils": "^2.4.6", + "antdv-component-resolver": "^1.0.8", + "antdv-style": "0.0.1-beta.4", + "changelogen": "^0.5.7", + "cross-env": "^7.0.3", + "directory-tree": "^3.5.2", + "esbuild": "^0.25.10", + "eslint": "^9.36.0", + "eslint-plugin-format": "^1.0.2", + "esno": "^0.17.0", + "execa": "^8.0.1", + "fs-extra": "^11.3.2", + "h3": "2.0.0-beta.4", + "husky": "^9.1.7", + "jiti": "^2.6.0", + "jsdom": "^22.1.0", + "less": "^4.4.1", + "lint-staged": "^14.0.1", + "lodash": "^4.17.21", + "mock-h3": "0.0.1-beta.12", + "npm-run-all": "^4.1.5", + "picocolors": "^1.1.1", + "treeify": "^1.1.0", + "ts-node": "^10.9.2", + "typescript": "~5.8.3", + "unocss": "^66.5.2", + "unocss-preset-chinese": "^0.3.3", + "unocss-preset-ease": "^0.0.3", + "unplugin-auto-import": "^19.3.0", + "unplugin-config": "^0.1.5", + "unplugin-vue-components": "^29.1.0", + "vite": "npm:rolldown-vite@7.1.13", + "vitest": "^3.2.4", + "vue-tsc": "^3.0.8" + }, + "lint-staged": { + "**/*.{vue,ts,js,jsx,tsx}": "eslint src --fix" + } +} diff --git a/frontend/plugins/constants.ts b/frontend/plugins/constants.ts new file mode 100644 index 0000000..220cb6b --- /dev/null +++ b/frontend/plugins/constants.ts @@ -0,0 +1,5 @@ +// This constant defines the name of the configuration file that will be used in the production environment +export const GLOB_CONFIG_FILE_NAME = '_app.config.js' + +// This constant sets the output directory for the Vite package +export const OUTPUT_DIR = 'dist' diff --git a/frontend/plugins/index.ts b/frontend/plugins/index.ts new file mode 100644 index 0000000..543ffe7 --- /dev/null +++ b/frontend/plugins/index.ts @@ -0,0 +1,52 @@ +import type { PluginOption } from 'vite' +import VitePluginPreloadAll from '@mistjs/vite-plugin-preload' +import vue from '@vitejs/plugin-vue' +import vueJsx from '@vitejs/plugin-vue-jsx' +import AntdvResolver from 'antdv-component-resolver' +import { mockH3 } from 'mock-h3/vite' +import Unocss from 'unocss/vite' +import AutoImport from 'unplugin-auto-import/vite' +import GenerateConfig from 'unplugin-config/vite' +import Components from 'unplugin-vue-components/vite' +import { GLOB_CONFIG_FILE_NAME, OUTPUT_DIR } from './constants' +import { viteBuildInfo } from './vite-build-info' + +export function createVitePlugins(env: Record) { + const vitePluginList: (PluginOption | PluginOption[])[] = [ + vue(), + vueJsx(), + // mockH3({}), + VitePluginPreloadAll(), + AutoImport({ + imports: [ + 'vue', + 'vue-router', + 'vue-i18n', + '@vueuse/core', + 'pinia', + ], + dts: 'types/auto-imports.d.ts', + dirs: ['src/stores', 'src/composables'], + }), + Components({ + resolvers: [AntdvResolver()], + dts: 'types/components.d.ts', + dirs: ['src/components'], + }), + // https://github.com/kirklin/unplugin-config + GenerateConfig({ + appName: env.VITE_GLOB_APP_TITLE, + configFile: { + generate: true, + fileName: GLOB_CONFIG_FILE_NAME, + outputDir: OUTPUT_DIR, + }, + envVariables: { + prefix: 'VITE_GLOB_', + }, + }), + Unocss(), + viteBuildInfo(env.VITE_APP_NAME), + ] + return vitePluginList +} diff --git a/frontend/plugins/vite-build-info.ts b/frontend/plugins/vite-build-info.ts new file mode 100644 index 0000000..0578b1d --- /dev/null +++ b/frontend/plugins/vite-build-info.ts @@ -0,0 +1,207 @@ +import type { Dayjs } from 'dayjs' +import type { Plugin, ResolvedConfig } from 'vite' +import { readdir, stat } from 'node:fs' +import dayjs from 'dayjs' +import duration from 'dayjs/plugin/duration' +import pkg from 'picocolors' + +const { green, blue, bold } = pkg +dayjs.extend(duration) + +const fileListTotal: number[] = [] + +// eslint-disable-next-line ts/no-unsafe-function-type +function recursiveDirectory(folder: string, callback: Function): void { + readdir(folder, (err, files: string[]) => { + if (err) + throw err + let count = 0 + const checkEnd = () => { + ++count === files.length && callback() + } + files.forEach((item: string) => { + stat(`${folder}/${item}`, async (err, stats) => { + if (err) + throw err + if (stats.isFile()) { + fileListTotal.push(stats.size) + checkEnd() + } + else if (stats.isDirectory()) { + recursiveDirectory(`${folder}/${item}/`, checkEnd) + } + }) + }) + files.length === 0 && callback() + }) +} + +function sum(arr: number[]) { + return arr.reduce((t: number, c: number) => { + return t + c + }, 0) +} +function formatBytes(a: number, b?: number): string { + if (a === 0) + return '0 Bytes' + const c = 1024 + const d = b || 2 + const e = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'] + const f = Math.floor(Math.log(a) / Math.log(c)) + return `${Number.parseFloat((a / c ** f).toFixed(d))} ${e[f]}` +} + +export function viteBuildInfo(name: string): Plugin { + let config: ResolvedConfig + let startTime: Dayjs + let endTime: Dayjs + return { + name: 'vite:buildInfo', + configResolved(resolvedConfig) { + config = resolvedConfig + }, + buildStart() { + console.log( + bold( + green( + `👏欢迎使用${blue(`[${name}]`)},现在正全力为您${config.command === 'build' ? '打包' : '编译' + }`, + ), + ), + ) + if (config.command === 'build') + startTime = dayjs(new Date()) + }, + closeBundle() { + if (config.command === 'build') { + endTime = dayjs(new Date()) + recursiveDirectory(config.build.outDir, () => { + console.log( + bold( + green( + `恭喜打包完成🎉(总用时${dayjs + .duration(endTime.diff(startTime)) + .format('mm分ss秒')},打包后的大小为${formatBytes( + sum(fileListTotal), + )})`, + ), + ), + ) + }) + } + }, + } +} + + +// import type { Dayjs } from 'dayjs' +// import type { Plugin, ResolvedConfig } from 'vite' +// import { readdir, stat, existsSync } from 'node:fs' // 👈 新增 existsSync +// import { resolve } from 'node:path' // 👈 新增 resolve +// import dayjs from 'dayjs' +// import duration from 'dayjs/plugin/duration' +// import pkg from 'picocolors' + +// const { green, blue, bold } = pkg +// dayjs.extend(duration) + +// const fileListTotal: number[] = [] + +// function recursiveDirectory(folder: string, callback: () => void): void { +// // 👇 先检查目录是否存在 +// if (!existsSync(folder)) { +// console.warn(`[vite:buildInfo] 目录不存在: ${folder}`) +// callback() +// return +// } + +// readdir(folder, (err, files: string[]) => { +// if (err) { +// console.error('[vite:buildInfo] 读取目录失败:', err) +// callback() +// return +// } + +// let count = 0 +// const checkEnd = () => { +// if (++count === files.length) callback() +// } + +// if (files.length === 0) { +// callback() +// return +// } + +// files.forEach((item: string) => { +// const fullPath = resolve(folder, item) // 👈 使用 resolve 拼接路径 +// stat(fullPath, (err, stats) => { +// if (err) { +// checkEnd() +// return +// } +// if (stats.isFile()) { +// fileListTotal.push(stats.size) +// checkEnd() +// } else if (stats.isDirectory()) { +// recursiveDirectory(fullPath, checkEnd) +// } +// }) +// }) +// }) +// } + +// function sum(arr: number[]) { +// return arr.reduce((t, c) => t + c, 0) +// } + +// function formatBytes(a: number, b = 2): string { +// if (a === 0) return '0 Bytes' +// const c = 1024 +// const e = ['Bytes', 'KB', 'MB', 'GB', 'TB'] +// const f = Math.floor(Math.log(a) / Math.log(c)) +// return `${parseFloat((a / c ** f).toFixed(b))} ${e[f]}` +// } + +// export function viteBuildInfo(name: string): Plugin { +// let config: ResolvedConfig +// let startTime: Dayjs +// let endTime: Dayjs + +// return { +// name: 'vite:buildInfo', +// configResolved(resolvedConfig) { +// config = resolvedConfig +// }, +// buildStart() { +// console.log( +// bold( +// green( +// `👏欢迎使用${blue(`[${name}]`)},现在正全力为您${config.command === 'build' ? '打包' : '编译'}`, +// ), +// ), +// ) +// if (config.command === 'build') { +// startTime = dayjs() +// } +// }, +// closeBundle() { +// if (config.command === 'build') { +// endTime = dayjs() +// // 👇 关键:将 outDir 转为绝对路径! +// const outDir = resolve(config.root || process.cwd(), config.build.outDir) + +// recursiveDirectory(outDir, () => { +// console.log( +// bold( +// green( +// `恭喜打包完成🎉(总用时${dayjs +// .duration(endTime.diff(startTime)) +// .format('mm分ss秒')},打包后的大小为${formatBytes(sum(fileListTotal))})`, +// ), +// ), +// ) +// }) +// } +// }, +// } +// } \ No newline at end of file diff --git a/frontend/pnpm-lock.yaml b/frontend/pnpm-lock.yaml new file mode 100644 index 0000000..79465ee --- /dev/null +++ b/frontend/pnpm-lock.yaml @@ -0,0 +1,12774 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + '@amap/amap-jsapi-loader': + specifier: ^1.0.1 + version: 1.0.1 + '@ant-design/icons-vue': + specifier: ^7.0.1 + version: 7.0.1(vue@3.5.22(typescript@5.8.3)) + '@antv/g2plot': + specifier: ^2.4.35 + version: 2.4.35 + '@antv/l7': + specifier: ^2.23.0 + version: 2.23.0 + '@ctrl/tinycolor': + specifier: ^4.2.0 + version: 4.2.0 + '@v-c/utils': + specifier: ^0.0.26 + version: 0.0.26(typescript@5.8.3) + '@vueuse/core': + specifier: ^10.11.1 + version: 10.11.1(vue@3.5.22(typescript@5.8.3)) + ant-design-vue: + specifier: ^4.2.6 + version: 4.2.6(vue@3.5.22(typescript@5.8.3)) + axios: + specifier: ^1.12.2 + version: 1.12.2 + crypto-js: + specifier: ^4.2.0 + version: 4.2.0 + dayjs: + specifier: ^1.11.18 + version: 1.11.18 + echarts: + specifier: ^6.0.0 + version: 6.0.0 + lodash-es: + specifier: ^4.17.21 + version: 4.17.21 + mitt: + specifier: ^3.0.1 + version: 3.0.1 + pinia: + specifier: ^2.3.1 + version: 2.3.1(typescript@5.8.3)(vue@3.5.22(typescript@5.8.3)) + sjcl: + specifier: ^1.0.9 + version: 1.0.9 + sm-crypto: + specifier: ^0.4.0 + version: 0.4.0 + vue: + specifier: ^3.5.22 + version: 3.5.22(typescript@5.8.3) + vue-i18n: + specifier: ^9.14.5 + version: 9.14.5(vue@3.5.22(typescript@5.8.3)) + vue-router: + specifier: ^4.5.1 + version: 4.5.1(vue@3.5.22(typescript@5.8.3)) + devDependencies: + '@antfu/eslint-config': + specifier: ^5.4.1 + version: 5.4.1(@vue/compiler-sfc@3.5.22)(eslint-plugin-format@1.0.2(eslint@9.36.0(jiti@2.6.0)))(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@20.19.17)(jiti@2.6.0)(jsdom@22.1.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1)) + '@commitlint/cli': + specifier: ^18.6.1 + version: 18.6.1(@types/node@20.19.17)(typescript@5.8.3) + '@commitlint/config-conventional': + specifier: ^18.6.3 + version: 18.6.3 + '@mistjs/vite-plugin-preload': + specifier: ^0.0.1 + version: 0.0.1(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1)) + '@types/crypto-js': + specifier: ^4.2.2 + version: 4.2.2 + '@types/fs-extra': + specifier: ^11.0.4 + version: 11.0.4 + '@types/lodash': + specifier: ^4.17.20 + version: 4.17.20 + '@types/lodash-es': + specifier: ^4.17.12 + version: 4.17.12 + '@types/node': + specifier: ^20.19.17 + version: 20.19.17 + '@types/treeify': + specifier: ^1.0.3 + version: 1.0.3 + '@vitejs/plugin-vue': + specifier: ^6.0.1 + version: 6.0.1(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.8.3)) + '@vitejs/plugin-vue-jsx': + specifier: ^5.1.1 + version: 5.1.1(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.8.3)) + '@vue/test-utils': + specifier: ^2.4.6 + version: 2.4.6 + antdv-component-resolver: + specifier: ^1.0.8 + version: 1.0.8(unplugin-vue-components@29.1.0(@babel/parser@7.28.4)(vue@3.5.22(typescript@5.8.3))) + antdv-style: + specifier: 0.0.1-beta.4 + version: 0.0.1-beta.4(ant-design-vue@4.2.6(vue@3.5.22(typescript@5.8.3)))(vue@3.5.22(typescript@5.8.3)) + changelogen: + specifier: ^0.5.7 + version: 0.5.7(magicast@0.3.5) + cross-env: + specifier: ^7.0.3 + version: 7.0.3 + directory-tree: + specifier: ^3.5.2 + version: 3.5.2 + esbuild: + specifier: ^0.25.10 + version: 0.25.10 + eslint: + specifier: ^9.36.0 + version: 9.36.0(jiti@2.6.0) + eslint-plugin-format: + specifier: ^1.0.2 + version: 1.0.2(eslint@9.36.0(jiti@2.6.0)) + esno: + specifier: ^0.17.0 + version: 0.17.0 + execa: + specifier: ^8.0.1 + version: 8.0.1 + fs-extra: + specifier: ^11.3.2 + version: 11.3.2 + h3: + specifier: 2.0.0-beta.4 + version: 2.0.0-beta.4 + husky: + specifier: ^9.1.7 + version: 9.1.7 + jiti: + specifier: ^2.6.0 + version: 2.6.0 + jsdom: + specifier: ^22.1.0 + version: 22.1.0 + less: + specifier: ^4.4.1 + version: 4.4.1 + lint-staged: + specifier: ^14.0.1 + version: 14.0.1 + lodash: + specifier: ^4.17.21 + version: 4.17.21 + mock-h3: + specifier: 0.0.1-beta.12 + version: 0.0.1-beta.12(h3@2.0.0-beta.4)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))(typescript@5.8.3)(vue-tsc@3.0.8(typescript@5.8.3)) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + picocolors: + specifier: ^1.1.1 + version: 1.1.1 + treeify: + specifier: ^1.1.0 + version: 1.1.0 + ts-node: + specifier: ^10.9.2 + version: 10.9.2(@types/node@20.19.17)(typescript@5.8.3) + typescript: + specifier: ~5.8.3 + version: 5.8.3 + unocss: + specifier: ^66.5.2 + version: 66.5.2(postcss@8.5.6)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1)) + unocss-preset-chinese: + specifier: ^0.3.3 + version: 0.3.3(unocss@66.5.2(postcss@8.5.6)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))) + unocss-preset-ease: + specifier: ^0.0.3 + version: 0.0.3(unocss@66.5.2(postcss@8.5.6)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))) + unplugin-auto-import: + specifier: ^19.3.0 + version: 19.3.0(@vueuse/core@10.11.1(vue@3.5.22(typescript@5.8.3))) + unplugin-config: + specifier: ^0.1.5 + version: 0.1.5(esbuild@0.25.10)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1)) + unplugin-vue-components: + specifier: ^29.1.0 + version: 29.1.0(@babel/parser@7.28.4)(vue@3.5.22(typescript@5.8.3)) + vite: + specifier: npm:rolldown-vite@7.1.13 + version: rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1) + vitest: + specifier: ^3.2.4 + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.17)(jiti@2.6.0)(jsdom@22.1.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1) + vue-tsc: + specifier: ^3.0.8 + version: 3.0.8(typescript@5.8.3) + +packages: + + '@amap/amap-jsapi-loader@1.0.1': + resolution: {integrity: sha512-nPyLKt7Ow/ThHLkSvn2etQlUzqxmTVgK7bIgwdBRTg2HK5668oN7xVxkaiRe3YZEzGzfV2XgH5Jmu2T73ljejw==} + + '@ampproject/remapping@2.3.0': + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} + engines: {node: '>=6.0.0'} + + '@ant-design/colors@6.0.0': + resolution: {integrity: sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==} + + '@ant-design/icons-svg@4.4.2': + resolution: {integrity: sha512-vHbT+zJEVzllwP+CM+ul7reTEfBR0vgxFe7+lREAsAA7YGsYpboiq2sQNeQeRvh09GfQgs/GyFEvZpJ9cLXpXA==} + + '@ant-design/icons-vue@7.0.1': + resolution: {integrity: sha512-eCqY2unfZK6Fe02AwFlDHLfoyEFreP6rBwAZMIJ1LugmfMiVgwWDYlp1YsRugaPtICYOabV1iWxXdP12u9U43Q==} + peerDependencies: + vue: '>=3.0.3' + + '@antfu/eslint-config@5.4.1': + resolution: {integrity: sha512-x7BiNkxJRlXXs8tIvg0CgMuNo5IZVWkGLMJotCtCtzWUHW78Pmm8PvtXhvLBbTc8683GGBK616MMztWLh4RNjA==} + hasBin: true + peerDependencies: + '@eslint-react/eslint-plugin': ^1.38.4 + '@next/eslint-plugin-next': ^15.4.0-canary.115 + '@prettier/plugin-xml': ^3.4.1 + '@unocss/eslint-plugin': '>=0.50.0' + astro-eslint-parser: ^1.0.2 + eslint: ^9.10.0 + eslint-plugin-astro: ^1.2.0 + eslint-plugin-format: '>=0.1.0' + eslint-plugin-jsx-a11y: '>=6.10.2' + eslint-plugin-react-hooks: ^5.2.0 + eslint-plugin-react-refresh: ^0.4.19 + eslint-plugin-solid: ^0.14.3 + eslint-plugin-svelte: '>=2.35.1' + eslint-plugin-vuejs-accessibility: ^2.4.1 + prettier-plugin-astro: ^0.14.0 + prettier-plugin-slidev: ^1.0.5 + svelte-eslint-parser: '>=0.37.0' + peerDependenciesMeta: + '@eslint-react/eslint-plugin': + optional: true + '@next/eslint-plugin-next': + optional: true + '@prettier/plugin-xml': + optional: true + '@unocss/eslint-plugin': + optional: true + astro-eslint-parser: + optional: true + eslint-plugin-astro: + optional: true + eslint-plugin-format: + optional: true + eslint-plugin-jsx-a11y: + optional: true + eslint-plugin-react-hooks: + optional: true + eslint-plugin-react-refresh: + optional: true + eslint-plugin-solid: + optional: true + eslint-plugin-svelte: + optional: true + eslint-plugin-vuejs-accessibility: + optional: true + prettier-plugin-astro: + optional: true + prettier-plugin-slidev: + optional: true + svelte-eslint-parser: + optional: true + + '@antfu/install-pkg@1.1.0': + resolution: {integrity: sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==} + + '@antfu/utils@9.2.0': + resolution: {integrity: sha512-Oq1d9BGZakE/FyoEtcNeSwM7MpDO2vUBi11RWBZXf75zPsbUVWmUs03EqkRFrcgbXyKTas0BdZWC1wcuSoqSAw==} + + '@antv/adjust@0.2.5': + resolution: {integrity: sha512-MfWZOkD9CqXRES6MBGRNe27Q577a72EIwyMnE29wIlPliFvJfWwsrONddpGU7lilMpVKecS3WAzOoip3RfPTRQ==} + + '@antv/async-hook@2.2.9': + resolution: {integrity: sha512-4BUp2ZUaTi2fYL67Ltkf6eV912rYJeSBokGhd5fhhnpUkMA1LEI1mg97Pqmx3yC50VEQ+LKXZxj9ePZs80ECfw==} + + '@antv/attr@0.3.5': + resolution: {integrity: sha512-wuj2gUo6C8Q2ASSMrVBuTcb5LcV+Tc0Egiy6bC42D0vxcQ+ta13CLxgMmHz8mjD0FxTPJDXSciyszRSC5TdLsg==} + + '@antv/color-util@2.0.6': + resolution: {integrity: sha512-KnPEaAH+XNJMjax9U35W67nzPI+QQ2x27pYlzmSIWrbj4/k8PGrARXfzDTjwoozHJY8qG62Z+Ww6Alhu2FctXQ==} + + '@antv/component@0.8.35': + resolution: {integrity: sha512-VnRa5X77nBPI952o2xePEEMSNZ6g2mcUDrQY8mVL2kino/8TFhqDq5fTRmDXZyWyIYd4ulJTz5zgeSwAnX/INQ==} + + '@antv/coord@0.3.1': + resolution: {integrity: sha512-rFE94C8Xzbx4xmZnHh2AnlB3Qm1n5x0VT3OROy257IH6Rm4cuzv1+tZaUBATviwZd99S+rOY9telw/+6C9GbRw==} + + '@antv/dom-util@2.0.4': + resolution: {integrity: sha512-2shXUl504fKwt82T3GkuT4Uoc6p9qjCKnJ8gXGLSW4T1W37dqf9AV28aCfoVPHp2BUXpSsB+PAJX2rG/jLHsLQ==} + + '@antv/event-emitter@0.1.3': + resolution: {integrity: sha512-4ddpsiHN9Pd4UIlWuKVK1C4IiZIdbwQvy9i7DUSI3xNJ89FPUFt8lxDYj8GzzfdllV0NkJTRxnG+FvLk0llidg==} + + '@antv/g-base@0.5.16': + resolution: {integrity: sha512-jP06wggTubDPHXoKwFg3/f1lyxBX9ywwN3E/HG74Nd7DXqOXQis8tsIWW+O6dS/h9vyuXLd1/wDWkMMm3ZzXdg==} + + '@antv/g-canvas@0.5.17': + resolution: {integrity: sha512-sXYJMWTOlb/Ycb6sTKu00LcJqInXJY4t99+kSM40u2OfqrXYmaXDjHR7D2V0roMkbK/QWiWS9UnEidCR1VtMOA==} + + '@antv/g-device-api@1.6.13': + resolution: {integrity: sha512-lTvlSHYDZyWJnAR1W8DOQLwUo32VpRopbS/BPQqStcOV6FqaC+u5YjT50KbJ+oBWcorpzfknhICRwEA3Xm8t9Q==} + + '@antv/g-math@0.1.9': + resolution: {integrity: sha512-KHMSfPfZ5XHM1PZnG42Q2gxXfOitYveNTA7L61lR6mhZ8Y/aExsYmHqaKBsSarU0z+6WLrl9C07PQJZaw0uljQ==} + + '@antv/g-svg@0.5.7': + resolution: {integrity: sha512-jUbWoPgr4YNsOat2Y/rGAouNQYGpw4R0cvlN0YafwOyacFFYy2zC8RslNd6KkPhhR3XHNSqJOuCYZj/YmLUwYw==} + + '@antv/g2@4.2.12': + resolution: {integrity: sha512-kTg6ftJol+0hYRM2eMwJKq3JThdq4UAKgCoQalUPjwyF6SSKkWz2QdrIAxfLE7LSTwcIE+L8So1jMaOVVbEi6w==} + + '@antv/g2plot@2.4.35': + resolution: {integrity: sha512-jpfgUqC2ch1kkrSSiY8qsFZ5/cYGcwMA9MAgqZXHdNBDcClrLzdakHyc5RN2na9LwZTY3qoj6AawZzAQSiJ58w==} + + '@antv/l7-component@2.23.0': + resolution: {integrity: sha512-3d96/h1nVzFnq4kLqIm2j/AYjTVszgT7C1VGBATws/NPxvtQSmxGxWHqSPtFFY3u7wvF3ad8MLBz4fV6BjoNnA==} + + '@antv/l7-core@2.23.0': + resolution: {integrity: sha512-OlDx0QA1am5Lg4WxTSEe83ziNSBmggdghl5V1fixnH+osfkgVfL85qFtnNVYKatueeJp87ui8bRFFktlbQDDYg==} + + '@antv/l7-layers@2.23.0': + resolution: {integrity: sha512-M4edKEyPsDZSF9H0nXl/CqKB3uudefOZ32j47aaXKnrFzoKNPiJ8vbHLAZIpi49OhkHV81MpoYndrGU7OzE5pg==} + + '@antv/l7-map@2.23.0': + resolution: {integrity: sha512-UfklvmzFxJWQCEZxYHAhliES9+NRGxWVJfKXYZfg1WDJKkNs3Ldz78UUFbskVrFmAChBUhxe+9z78L/DNKqq+w==} + + '@antv/l7-maps@2.23.0': + resolution: {integrity: sha512-SVwP8QbKawq3VRdZR/R8D87R762A69dFKefg/l3goxWTT1JXq4+sLUvovGdpgy1OlVQfFfu60tN61WAAjnNpug==} + + '@antv/l7-renderer@2.23.0': + resolution: {integrity: sha512-72K2LMjYnSRml/sFqD8yxIO8SXk50e5h4uZEF6zjyKu9A9B/HO+msJQzkpDBNCBt5ssdDglGvGytgKL1fIoxcw==} + + '@antv/l7-scene@2.23.0': + resolution: {integrity: sha512-4P7Z/CiPe29DO4B6xzGUVzhI/tAh1Y2Ia9OTm077Cpd+uJDF2xgZGCi5hUEDuG4iRJGHKp10hR6Hm5PBA25Xlw==} + + '@antv/l7-source@2.23.0': + resolution: {integrity: sha512-BdBVnIuToornoUoRRlNB1UXRykUlcpvIww0oSMq/zC0/k/0zCdd6GjMCx8DgTmJGNTVQk/0pO8FGQqRC6eam0Q==} + + '@antv/l7-utils@2.23.0': + resolution: {integrity: sha512-5T7S2w9fW05CEV7djuBoRbyjBmTOpYU0nW+Mnb4yszA5ZB9xlEWOFTuLaDc58Nj0XNLH/9IIX9rW2ad6VnQjHg==} + + '@antv/l7@2.23.0': + resolution: {integrity: sha512-REEUvybuPgDqXVt/ddLuKzQ2eYILqCB9uNLEWdiDOSRK0SuSCGCPykR46pjGMWo2D8TPHl7S2QUtcscqXs8AQA==} + + '@antv/matrix-util@3.0.4': + resolution: {integrity: sha512-BAPyu6dUliHcQ7fm9hZSGKqkwcjEDVLVAstlHULLvcMZvANHeLXgHEgV7JqcAV/GIhIz8aZChIlzM1ZboiXpYQ==} + + '@antv/matrix-util@3.1.0-beta.3': + resolution: {integrity: sha512-W2R6Za3A6CmG51Y/4jZUM/tFgYSq7vTqJL1VD9dKrvwxS4sE0ZcXINtkp55CdyBwJ6Cwm8pfoRpnD4FnHahN0A==} + + '@antv/path-util@2.0.15': + resolution: {integrity: sha512-R2VLZ5C8PLPtr3VciNyxtjKqJ0XlANzpFb5sE9GE61UQqSRuSVSzIakMxjEPrpqbgc+s+y8i+fmc89Snu7qbNw==} + + '@antv/path-util@3.0.1': + resolution: {integrity: sha512-tpvAzMpF9Qm6ik2YSMqICNU5tco5POOW7S4XoxZAI/B0L26adU+Md/SmO0BBo2SpuywKvzPH3hPT3xmoyhr04Q==} + + '@antv/scale@0.3.18': + resolution: {integrity: sha512-GHwE6Lo7S/Q5fgaLPaCsW+CH+3zl4aXpnN1skOiEY0Ue9/u+s2EySv6aDXYkAqs//i0uilMDD/0/4n8caX9U9w==} + + '@antv/util@2.0.17': + resolution: {integrity: sha512-o6I9hi5CIUvLGDhth0RxNSFDRwXeywmt6ExR4+RmVAzIi48ps6HUy+svxOCayvrPBN37uE6TAc2KDofRo0nK9Q==} + + '@antv/util@3.3.10': + resolution: {integrity: sha512-basGML3DFA3O87INnzvDStjzS+n0JLEhRnRsDzP9keiXz8gT1z/fTdmJAZFOzMMWxy+HKbi7NbSt0+8vz/OsBQ==} + + '@babel/code-frame@7.26.2': + resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} + engines: {node: '>=6.9.0'} + + '@babel/code-frame@7.27.1': + resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} + engines: {node: '>=6.9.0'} + + '@babel/compat-data@7.28.0': + resolution: {integrity: sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==} + engines: {node: '>=6.9.0'} + + '@babel/core@7.28.3': + resolution: {integrity: sha512-yDBHV9kQNcr2/sUr9jghVyz9C3Y5G2zUM2H2lo+9mKv4sFgbA8s8Z9t8D1jiTkGoO/NoIfKMyKWr4s6CN23ZwQ==} + engines: {node: '>=6.9.0'} + + '@babel/generator@7.26.3': + resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==} + engines: {node: '>=6.9.0'} + + '@babel/generator@7.28.3': + resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-annotate-as-pure@7.27.3': + resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-compilation-targets@7.27.2': + resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-create-class-features-plugin@7.28.3': + resolution: {integrity: sha512-V9f6ZFIYSLNEbuGA/92uOvYsGCJNsuA8ESZ4ldc09bWk/j8H8TKiPw8Mk1eG6olpnO0ALHJmYfZvF4MEE4gajg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-globals@7.28.0': + resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-member-expression-to-functions@7.27.1': + resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-imports@7.25.9': + resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-imports@7.27.1': + resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-transforms@7.28.3': + resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-optimise-call-expression@7.27.1': + resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-plugin-utils@7.27.1': + resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-replace-supers@7.27.1': + resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-skip-transparent-expression-wrappers@7.27.1': + resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-string-parser@7.25.9': + resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-string-parser@7.27.1': + resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.25.9': + resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.27.1': + resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-option@7.27.1': + resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} + engines: {node: '>=6.9.0'} + + '@babel/helpers@7.28.3': + resolution: {integrity: sha512-PTNtvUQihsAsDHMOP5pfobP8C6CM4JWXmP8DrEIt46c3r2bf87Ua1zoqevsMo9g+tWDwgWrFP5EIxuBx5RudAw==} + engines: {node: '>=6.9.0'} + + '@babel/parser@7.26.3': + resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/parser@7.27.7': + resolution: {integrity: sha512-qnzXzDXdr/po3bOTbTIQZ7+TxNKxpkN5IifVLXS+r7qwynkZfPyjZfE7hCXbo7IoO9TNcSyibgONsf2HauUd3Q==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/parser@7.28.3': + resolution: {integrity: sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/parser@7.28.4': + resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/plugin-syntax-jsx@7.27.1': + resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-typescript@7.27.1': + resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-typescript@7.28.0': + resolution: {integrity: sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/runtime@7.26.0': + resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} + engines: {node: '>=6.9.0'} + + '@babel/template@7.25.9': + resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} + engines: {node: '>=6.9.0'} + + '@babel/template@7.27.2': + resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.26.4': + resolution: {integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.27.7': + resolution: {integrity: sha512-X6ZlfR/O/s5EQ/SnUSLzr+6kGnkg8HXGMzpgsMsrJVcfDtH1vIp6ctCN4eZ1LS5c0+te5Cb6Y514fASjMRJ1nw==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.28.3': + resolution: {integrity: sha512-7w4kZYHneL3A6NP2nxzHvT3HCZ7puDZZjFMqDpBPECub79sTtSO5CGXDkKrTQq8ksAwfD/XI2MRFX23njdDaIQ==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.26.3': + resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.28.2': + resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.28.4': + resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==} + engines: {node: '>=6.9.0'} + + '@clack/core@0.5.0': + resolution: {integrity: sha512-p3y0FIOwaYRUPRcMO7+dlmLh8PSRcrjuTndsiA0WAFbWES0mLZlrjVoBRZ9DzkPFJZG6KGkJmoEAY0ZcVWTkow==} + + '@clack/prompts@0.11.0': + resolution: {integrity: sha512-pMN5FcrEw9hUkZA4f+zLlzivQSeQf5dRGJjSUbvVYDLvpKCdQx5OaknvKzgbtXOizhP+SJJJjqEbOe55uKKfAw==} + + '@commitlint/cli@18.6.1': + resolution: {integrity: sha512-5IDE0a+lWGdkOvKH892HHAZgbAjcj1mT5QrfA/SVbLJV/BbBMGyKN0W5mhgjekPJJwEQdVNvhl9PwUacY58Usw==} + engines: {node: '>=v18'} + hasBin: true + + '@commitlint/config-conventional@18.6.3': + resolution: {integrity: sha512-8ZrRHqF6je+TRaFoJVwszwnOXb/VeYrPmTwPhf0WxpzpGTcYy1p0SPyZ2eRn/sRi/obnWAcobtDAq6+gJQQNhQ==} + engines: {node: '>=v18'} + + '@commitlint/config-validator@18.6.1': + resolution: {integrity: sha512-05uiToBVfPhepcQWE1ZQBR/Io3+tb3gEotZjnI4tTzzPk16NffN6YABgwFQCLmzZefbDcmwWqJWc2XT47q7Znw==} + engines: {node: '>=v18'} + + '@commitlint/ensure@18.6.1': + resolution: {integrity: sha512-BPm6+SspyxQ7ZTsZwXc7TRQL5kh5YWt3euKmEIBZnocMFkJevqs3fbLRb8+8I/cfbVcAo4mxRlpTPfz8zX7SnQ==} + engines: {node: '>=v18'} + + '@commitlint/execute-rule@18.6.1': + resolution: {integrity: sha512-7s37a+iWyJiGUeMFF6qBlyZciUkF8odSAnHijbD36YDctLhGKoYltdvuJ/AFfRm6cBLRtRk9cCVPdsEFtt/2rg==} + engines: {node: '>=v18'} + + '@commitlint/format@18.6.1': + resolution: {integrity: sha512-K8mNcfU/JEFCharj2xVjxGSF+My+FbUHoqR+4GqPGrHNqXOGNio47ziiR4HQUPKtiNs05o8/WyLBoIpMVOP7wg==} + engines: {node: '>=v18'} + + '@commitlint/is-ignored@18.6.1': + resolution: {integrity: sha512-MOfJjkEJj/wOaPBw5jFjTtfnx72RGwqYIROABudOtJKW7isVjFe9j0t8xhceA02QebtYf4P/zea4HIwnXg8rvA==} + engines: {node: '>=v18'} + + '@commitlint/lint@18.6.1': + resolution: {integrity: sha512-8WwIFo3jAuU+h1PkYe5SfnIOzp+TtBHpFr4S8oJWhu44IWKuVx6GOPux3+9H1iHOan/rGBaiacicZkMZuluhfQ==} + engines: {node: '>=v18'} + + '@commitlint/load@18.6.1': + resolution: {integrity: sha512-p26x8734tSXUHoAw0ERIiHyW4RaI4Bj99D8YgUlVV9SedLf8hlWAfyIFhHRIhfPngLlCe0QYOdRKYFt8gy56TA==} + engines: {node: '>=v18'} + + '@commitlint/message@18.6.1': + resolution: {integrity: sha512-VKC10UTMLcpVjMIaHHsY1KwhuTQtdIKPkIdVEwWV+YuzKkzhlI3aNy6oo1eAN6b/D2LTtZkJe2enHmX0corYRw==} + engines: {node: '>=v18'} + + '@commitlint/parse@18.6.1': + resolution: {integrity: sha512-eS/3GREtvVJqGZrwAGRwR9Gdno3YcZ6Xvuaa+vUF8j++wsmxrA2En3n0ccfVO2qVOLJC41ni7jSZhQiJpMPGOQ==} + engines: {node: '>=v18'} + + '@commitlint/read@18.6.1': + resolution: {integrity: sha512-ia6ODaQFzXrVul07ffSgbZGFajpe8xhnDeLIprLeyfz3ivQU1dIoHp7yz0QIorZ6yuf4nlzg4ZUkluDrGN/J/w==} + engines: {node: '>=v18'} + + '@commitlint/resolve-extends@18.6.1': + resolution: {integrity: sha512-ifRAQtHwK+Gj3Bxj/5chhc4L2LIc3s30lpsyW67yyjsETR6ctHAHRu1FSpt0KqahK5xESqoJ92v6XxoDRtjwEQ==} + engines: {node: '>=v18'} + + '@commitlint/rules@18.6.1': + resolution: {integrity: sha512-kguM6HxZDtz60v/zQYOe0voAtTdGybWXefA1iidjWYmyUUspO1zBPQEmJZ05/plIAqCVyNUTAiRPWIBKLCrGew==} + engines: {node: '>=v18'} + + '@commitlint/to-lines@18.6.1': + resolution: {integrity: sha512-Gl+orGBxYSNphx1+83GYeNy5N0dQsHBQ9PJMriaLQDB51UQHCVLBT/HBdOx5VaYksivSf5Os55TLePbRLlW50Q==} + engines: {node: '>=v18'} + + '@commitlint/top-level@18.6.1': + resolution: {integrity: sha512-HyiHQZUTf0+r0goTCDs/bbVv/LiiQ7AVtz6KIar+8ZrseB9+YJAIo8HQ2IC2QT1y3N1lbW6OqVEsTHjbT6hGSw==} + engines: {node: '>=v18'} + + '@commitlint/types@18.6.1': + resolution: {integrity: sha512-gwRLBLra/Dozj2OywopeuHj2ac26gjGkz2cZ+86cTJOdtWfiRRr4+e77ZDAGc6MDWxaWheI+mAV5TLWWRwqrFg==} + engines: {node: '>=v18'} + + '@cspotcode/source-map-support@0.8.1': + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} + + '@ctrl/tinycolor@3.6.1': + resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==} + engines: {node: '>=10'} + + '@ctrl/tinycolor@4.2.0': + resolution: {integrity: sha512-kzyuwOAQnXJNLS9PSyrk0CWk35nWJW/zl/6KvnTBMFK65gm7U1/Z5BqjxeapjZCIhQcM/DsrEmcbRwDyXyXK4A==} + engines: {node: '>=14'} + + '@dprint/formatter@0.3.0': + resolution: {integrity: sha512-N9fxCxbaBOrDkteSOzaCqwWjso5iAe+WJPsHC021JfHNj2ThInPNEF13ORDKta3llq5D1TlclODCvOvipH7bWQ==} + + '@dprint/markdown@0.17.8': + resolution: {integrity: sha512-ukHFOg+RpG284aPdIg7iPrCYmMs3Dqy43S1ejybnwlJoFiW02b+6Bbr5cfZKFRYNP3dKGM86BqHEnMzBOyLvvA==} + + '@dprint/toml@0.6.4': + resolution: {integrity: sha512-bZXIUjxr0LIuHWshZr/5mtUkOrnh0NKVZEF6ACojW5z7zkJu7s9sV2mMXm8XQDqN4cJzdHYUYzUyEGdfciaLJA==} + + '@emnapi/core@1.11.1': + resolution: {integrity: sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==} + + '@emnapi/core@1.5.0': + resolution: {integrity: sha512-sbP8GzB1WDzacS8fgNPpHlp6C9VZe+SJP3F90W9rLemaQj2PzIuTEl1qDOYQf58YIpyjViI24y9aPWCjEzY2cg==} + + '@emnapi/runtime@1.11.1': + resolution: {integrity: sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==} + + '@emnapi/runtime@1.5.0': + resolution: {integrity: sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==} + + '@emnapi/wasi-threads@1.1.0': + resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==} + + '@emnapi/wasi-threads@1.2.2': + resolution: {integrity: sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==} + + '@emotion/babel-plugin@11.13.5': + resolution: {integrity: sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==} + + '@emotion/cache@11.14.0': + resolution: {integrity: sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==} + + '@emotion/css@11.13.5': + resolution: {integrity: sha512-wQdD0Xhkn3Qy2VNcIzbLP9MR8TafI0MJb7BEAXKp+w4+XqErksWR4OXomuDzPsN4InLdGhVe6EYcn2ZIUCpB8w==} + + '@emotion/hash@0.9.2': + resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==} + + '@emotion/memoize@0.9.0': + resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==} + + '@emotion/serialize@1.3.3': + resolution: {integrity: sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==} + + '@emotion/server@11.11.0': + resolution: {integrity: sha512-6q89fj2z8VBTx9w93kJ5n51hsmtYuFPtZgnc1L8VzRx9ti4EU6EyvF6Nn1H1x3vcCQCF7u2dB2lY4AYJwUW4PA==} + peerDependencies: + '@emotion/css': ^11.0.0-rc.0 + peerDependenciesMeta: + '@emotion/css': + optional: true + + '@emotion/sheet@1.4.0': + resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==} + + '@emotion/unitless@0.10.0': + resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==} + + '@emotion/unitless@0.8.1': + resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} + + '@emotion/utils@1.4.2': + resolution: {integrity: sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==} + + '@emotion/weak-memoize@0.4.0': + resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==} + + '@es-joy/jsdoccomment@0.50.2': + resolution: {integrity: sha512-YAdE/IJSpwbOTiaURNCKECdAwqrJuFiZhylmesBcIRawtYKnBR2wxPhoIewMg+Yu+QuYvHfJNReWpoxGBKOChA==} + engines: {node: '>=18'} + + '@es-joy/jsdoccomment@0.58.0': + resolution: {integrity: sha512-smMc5pDht/UVsCD3hhw/a/e/p8m0RdRYiluXToVfd+d4yaQQh7nn9bACjkk6nXJvat7EWPAxuFkMEFfrxeGa3Q==} + engines: {node: '>=20.11.0'} + + '@esbuild/aix-ppc64@0.25.10': + resolution: {integrity: sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.18.20': + resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm64@0.25.10': + resolution: {integrity: sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.18.20': + resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + + '@esbuild/android-arm@0.25.10': + resolution: {integrity: sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.18.20': + resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + + '@esbuild/android-x64@0.25.10': + resolution: {integrity: sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.18.20': + resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-arm64@0.25.10': + resolution: {integrity: sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.18.20': + resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + + '@esbuild/darwin-x64@0.25.10': + resolution: {integrity: sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.18.20': + resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-arm64@0.25.10': + resolution: {integrity: sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.18.20': + resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.25.10': + resolution: {integrity: sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.18.20': + resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm64@0.25.10': + resolution: {integrity: sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.18.20': + resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-arm@0.25.10': + resolution: {integrity: sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.18.20': + resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-ia32@0.25.10': + resolution: {integrity: sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.18.20': + resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-loong64@0.25.10': + resolution: {integrity: sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.18.20': + resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-mips64el@0.25.10': + resolution: {integrity: sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.18.20': + resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-ppc64@0.25.10': + resolution: {integrity: sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.18.20': + resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-riscv64@0.25.10': + resolution: {integrity: sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.18.20': + resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-s390x@0.25.10': + resolution: {integrity: sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.18.20': + resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + '@esbuild/linux-x64@0.25.10': + resolution: {integrity: sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-arm64@0.25.10': + resolution: {integrity: sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.18.20': + resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.25.10': + resolution: {integrity: sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-arm64@0.25.10': + resolution: {integrity: sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.18.20': + resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.25.10': + resolution: {integrity: sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openharmony-arm64@0.25.10': + resolution: {integrity: sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/sunos-x64@0.18.20': + resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + '@esbuild/sunos-x64@0.25.10': + resolution: {integrity: sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.18.20': + resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-arm64@0.25.10': + resolution: {integrity: sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.18.20': + resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-ia32@0.25.10': + resolution: {integrity: sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.18.20': + resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + + '@esbuild/win32-x64@0.25.10': + resolution: {integrity: sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + + '@eslint-community/eslint-plugin-eslint-comments@4.5.0': + resolution: {integrity: sha512-MAhuTKlr4y/CE3WYX26raZjy+I/kS2PLKSzvfmDCGrBLTFHOYwqROZdr4XwPgXwX3K9rjzMr4pSmUWGnzsUyMg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 + + '@eslint-community/eslint-utils@4.9.0': + resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + + '@eslint-community/regexpp@4.12.1': + resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + '@eslint/compat@1.4.0': + resolution: {integrity: sha512-DEzm5dKeDBPm3r08Ixli/0cmxr8LkRdwxMRUIJBlSCpAwSrvFEJpVBzV+66JhDxiaqKxnRzCXhtiMiczF7Hglg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.40 || 9 + peerDependenciesMeta: + eslint: + optional: true + + '@eslint/config-array@0.21.0': + resolution: {integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/config-helpers@0.3.1': + resolution: {integrity: sha512-xR93k9WhrDYpXHORXpxVL5oHj3Era7wo6k/Wd8/IsQNnZUTzkGS29lyn3nAT05v6ltUuTFVCCYDEGfy2Or/sPA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.15.2': + resolution: {integrity: sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.16.0': + resolution: {integrity: sha512-nmC8/totwobIiFcGkDza3GIKfAw1+hLiYVrh3I1nIomQ8PEr5cxg34jnkmGawul/ep52wGRAcyeDCNtWKSOj4Q==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/eslintrc@3.3.1': + resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/js@9.36.0': + resolution: {integrity: sha512-uhCbYtYynH30iZErszX78U+nR3pJU3RHGQ57NXy5QupD4SBVwDeU8TNBy+MjMngc1UyIW9noKqsRqfjQTBU2dw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/markdown@7.3.0': + resolution: {integrity: sha512-v9Cpl9IvzGmWMUwDAwSbf1b2GMwjQJiD0TSHegFrIu23mjqGQOvaCwnetzbG3/fjk8x7baKaIbSTBlpCktZRRg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/object-schema@2.1.6': + resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/plugin-kit@0.3.5': + resolution: {integrity: sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@humanfs/core@0.19.1': + resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} + engines: {node: '>=18.18.0'} + + '@humanfs/node@0.16.6': + resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} + engines: {node: '>=18.18.0'} + + '@humanwhocodes/module-importer@1.0.1': + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + + '@humanwhocodes/retry@0.3.1': + resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} + engines: {node: '>=18.18'} + + '@humanwhocodes/retry@0.4.3': + resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} + engines: {node: '>=18.18'} + + '@iconify/types@2.0.0': + resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==} + + '@iconify/utils@3.0.1': + resolution: {integrity: sha512-A78CUEnFGX8I/WlILxJCuIJXloL0j/OJ9PSchPAfCargEIKmUBWvvEMmKWB5oONwiUqlNt+5eRufdkLxeHIWYw==} + + '@intlify/core-base@9.14.5': + resolution: {integrity: sha512-5ah5FqZG4pOoHjkvs8mjtv+gPKYU0zCISaYNjBNNqYiaITxW8ZtVih3GS/oTOqN8d9/mDLyrjD46GBApNxmlsA==} + engines: {node: '>= 16'} + + '@intlify/message-compiler@9.14.5': + resolution: {integrity: sha512-IHzgEu61/YIpQV5Pc3aRWScDcnFKWvQA9kigcINcCBXN8mbW+vk9SK+lDxA6STzKQsVJxUPg9ACC52pKKo3SVQ==} + engines: {node: '>= 16'} + + '@intlify/shared@9.14.5': + resolution: {integrity: sha512-9gB+E53BYuAEMhbCAxVgG38EZrk59sxBtv3jSizNL2hEWlgjBjAw1AwpLHtNaeda12pe6W20OGEa0TwuMSRbyQ==} + engines: {node: '>= 16'} + + '@isaacs/cliui@8.0.2': + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + + '@jridgewell/gen-mapping@0.3.13': + resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} + + '@jridgewell/gen-mapping@0.3.8': + resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} + engines: {node: '>=6.0.0'} + + '@jridgewell/remapping@2.3.5': + resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/set-array@1.2.1': + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} + + '@jridgewell/source-map@0.3.6': + resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} + + '@jridgewell/sourcemap-codec@1.5.0': + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + + '@jridgewell/sourcemap-codec@1.5.5': + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} + + '@jridgewell/trace-mapping@0.3.25': + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + + '@jridgewell/trace-mapping@0.3.30': + resolution: {integrity: sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q==} + + '@jridgewell/trace-mapping@0.3.9': + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + + '@kirklin/logger@0.0.2': + resolution: {integrity: sha512-CGZ9HGmHGTcGnU8CDQm7RR7hZgxLyRHTIFpS1FDCQkVaipdL/poq72ibpKqqQflomgKRCYV6GReP7ZXEZeDx1w==} + + '@ljharb/resumer@0.0.1': + resolution: {integrity: sha512-skQiAOrCfO7vRTq53cxznMpks7wS1va95UCidALlOVWqvBAzwPVErwizDwoMqNVMEn1mDq0utxZd02eIrvF1lw==} + engines: {node: '>= 0.4'} + + '@ljharb/through@2.3.13': + resolution: {integrity: sha512-/gKJun8NNiWGZJkGzI/Ragc53cOdcLNdzjLaIa+GEjguQs0ulsurx8WN0jijdK9yPqDvziX995sMRLyLt1uZMQ==} + engines: {node: '>= 0.4'} + + '@mapbox/geojson-rewind@0.5.2': + resolution: {integrity: sha512-tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA==} + hasBin: true + + '@mapbox/geojson-types@1.0.2': + resolution: {integrity: sha512-e9EBqHHv3EORHrSfbR9DqecPNn+AmuAoQxV6aL8Xu30bJMJR1o8PZLZzpk1Wq7/NfCbuhmakHTPYRhoqLsXRnw==} + + '@mapbox/jsonlint-lines-primitives@2.0.2': + resolution: {integrity: sha512-rY0o9A5ECsTQRVhv7tL/OyDpGAoUB4tTvLiW1DSzQGq4bvTPhNw1VpSNjDJc5GFZ2XuyOtSWSVN05qOtcD71qQ==} + engines: {node: '>= 0.6'} + + '@mapbox/mapbox-gl-supported@1.5.0': + resolution: {integrity: sha512-/PT1P6DNf7vjEEiPkVIRJkvibbqWtqnyGaBz3nfRdcxclNSnSdaLU5tfAgcD7I8Yt5i+L19s406YLl1koLnLbg==} + peerDependencies: + mapbox-gl: '>=0.32.1 <2.0.0' + + '@mapbox/martini@0.2.0': + resolution: {integrity: sha512-7hFhtkb0KTLEls+TRw/rWayq5EeHtTaErgm/NskVoXmtgAQu/9D299aeyj6mzAR/6XUnYRp2lU+4IcrYRFjVsQ==} + + '@mapbox/point-geometry@0.1.0': + resolution: {integrity: sha512-6j56HdLTwWGO0fJPlrZtdU/B13q8Uwmo18Ck2GnGgN9PCFyKTZ3UbXeEdRFh18i9XQ92eH2VdtpJHpBD3aripQ==} + + '@mapbox/tiny-sdf@1.2.5': + resolution: {integrity: sha512-cD8A/zJlm6fdJOk6DqPUV8mcpyJkRz2x2R+/fYcWDYG3oWbG7/L7Yl/WqQ1VZCjnL9OTIMAn6c+BC5Eru4sQEw==} + + '@mapbox/tiny-sdf@2.0.6': + resolution: {integrity: sha512-qMqa27TLw+ZQz5Jk+RcwZGH7BQf5G/TrutJhspsca/3SHwmgKQ1iq+d3Jxz5oysPVYTGP6aXxCo5Lk9Er6YBAA==} + + '@mapbox/unitbezier@0.0.0': + resolution: {integrity: sha512-HPnRdYO0WjFjRTSwO3frz1wKaU649OBFPX3Zo/2WZvuRi6zMiRGui8SnPQiQABgqCf8YikDe5t3HViTVw1WUzA==} + + '@mapbox/unitbezier@0.0.1': + resolution: {integrity: sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==} + + '@mapbox/vector-tile@1.3.1': + resolution: {integrity: sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw==} + + '@mapbox/whoots-js@3.1.0': + resolution: {integrity: sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q==} + engines: {node: '>=6.0.0'} + + '@maplibre/maplibre-gl-style-spec@19.3.3': + resolution: {integrity: sha512-cOZZOVhDSulgK0meTsTkmNXb1ahVvmTmWmfx9gRBwc6hq98wS9JP35ESIoNq3xqEan+UN+gn8187Z6E4NKhLsw==} + hasBin: true + + '@mistjs/vite-plugin-preload@0.0.1': + resolution: {integrity: sha512-ou/IYGIWL4EbQ8n/6vrbRLzDx/shCzw2M5Ll3YXcBtHiasYKPMr7cGO24fYi+o6K9ILZUfFtglKaZF18qUan8w==} + peerDependencies: + vite: '>=4.0.0' + + '@napi-rs/wasm-runtime@1.0.7': + resolution: {integrity: sha512-SeDnOO0Tk7Okiq6DbXmmBODgOAb9dp9gjlphokTUxmt8U3liIP1ZsozBahH69j/RJv+Rfs6IwUKHTgQYJ/HBAw==} + + '@napi-rs/wasm-runtime@1.1.5': + resolution: {integrity: sha512-AWPoBRJ9tsnVhor4sjO7rkni+7p+2IAEFj6cx06UgP10jkQHqay/36uRV/bFkgrh18D9vb4cr8Q0Pthskgzy+Q==} + peerDependencies: + '@emnapi/core': ^1.7.1 + '@emnapi/runtime': ^1.7.1 + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@one-ini/wasm@0.1.1': + resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} + + '@oxc-project/runtime@0.92.0': + resolution: {integrity: sha512-Z7x2dZOmznihvdvCvLKMl+nswtOSVxS2H2ocar+U9xx6iMfTp0VGIrX6a4xB1v80IwOPC7dT1LXIJrY70Xu3Jw==} + engines: {node: ^20.19.0 || >=22.12.0} + + '@oxc-project/types@0.137.0': + resolution: {integrity: sha512-WT+Gb24i8hmvo85AIv2oEYouEXkRlKAlT9WaCa3TfLgNCN+GhrJOGZuIlMouAh38Qe4QOx26eUOVsq70qXrywA==} + + '@oxc-project/types@0.92.0': + resolution: {integrity: sha512-PDLfCbwgXjGdTBxzcuDOUxJYNBl6P8dOp3eDKWw54dYvqONan9rwGDRQU0zrkdEMiItfXQQUOI17uOcMX5Zm7A==} + + '@pkgjs/parseargs@0.11.0': + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + + '@pkgr/core@0.1.2': + resolution: {integrity: sha512-fdDH1LSGfZdTH2sxdpVMw31BanV28K/Gry0cVFxaNP77neJSkd82mM8ErPNYs9e+0O7SdHBLTDzDgwUuy18RnQ==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + + '@polka/url@1.0.0-next.28': + resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==} + + '@quansync/fs@0.1.5': + resolution: {integrity: sha512-lNS9hL2aS2NZgNW7BBj+6EBl4rOf8l+tQ0eRY6JWCI8jI2kc53gSoqbjojU0OnAWhzoXiOjFyGsHcDGePB3lhA==} + + '@rolldown/binding-android-arm64@1.0.0-beta.40': + resolution: {integrity: sha512-9Ii9phC7QU6Lb+ncMfG1Xlosq0NBB1N/4sw+EGZ3y0BBWGy02TOb5ghWZalphAKv9rn1goqo5WkBjyd2YvsLmA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [android] + + '@rolldown/binding-android-arm64@1.1.2': + resolution: {integrity: sha512-2cZ+7xRS+DBcuJBJKnfzsbleumJhBqSlJVpuzHC0nTqfd3QQ7Vx2/x5YR/D7cBamKSeWplwo82Fn9lqYUDEMfA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [android] + + '@rolldown/binding-darwin-arm64@1.0.0-beta.40': + resolution: {integrity: sha512-5O6d0y2tBQTL+ecQY3qXIwSnF1/Zik8q7LZMKeyF+VJ9l194d0IdMhl2zUF0cqWbYHuF4Pnxplk4OhurPQ/Z9Q==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [darwin] + + '@rolldown/binding-darwin-arm64@1.1.2': + resolution: {integrity: sha512-RkPMJnygxsgOYdkfqgpwY0/Fzm8d0VQe6HGU2/B00Xa9eqdLbrII+DOKAodbJAn3ZL1AJxGHkZRPYazgGY6Ljw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [darwin] + + '@rolldown/binding-darwin-x64@1.0.0-beta.40': + resolution: {integrity: sha512-izB9jygt3miPQbOTZfSu5K51isUplqa8ysByOKQqcJHgrBWmbTU8TM9eouv6tRmBR0kjcEcID9xhmA1CeZ1VIg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [darwin] + + '@rolldown/binding-darwin-x64@1.1.2': + resolution: {integrity: sha512-Uiczh6vFhwyfd7WNe7Q7mCA4KxAiLdz7jPE/WGizfRpIieoyFuNVMmM8HqZ9HwudTkY6/AeMQwlNJ9NJijguWw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [darwin] + + '@rolldown/binding-freebsd-x64@1.0.0-beta.40': + resolution: {integrity: sha512-2fdpEpKT+wwP0vig9dqxu+toTeWmVSjo3psJQVDeLJ51rO+GXcCJ1IkCXjhMKVEevNtZS7B8T8Z2vvmRV9MAdA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [freebsd] + + '@rolldown/binding-freebsd-x64@1.1.2': + resolution: {integrity: sha512-+TpdtTRgHiJFjCVFbw311SuLk3KfytPOQQn+VlAEv+gBxYPtL7E6JS9e/tk+8CwxhIZvemJKo4rTKgfWNsKkkA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [freebsd] + + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.40': + resolution: {integrity: sha512-HP2lo78OWULN+8TewpLbS9PS00jh0CaF04tA2u8z2I+6QgVgrYOYKvX+T0hlO5smgso4+qb3YchzumWJl3yCPQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [linux] + + '@rolldown/binding-linux-arm-gnueabihf@1.1.2': + resolution: {integrity: sha512-4lv1/tkmi7ueIVHnyreaOeUpiZP26BH9rRy6hoYfR9310A2B9nUEVRDvBx69vx64Nr3eTPPRkyciqJJs+j9Jmw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [linux] + + '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.40': + resolution: {integrity: sha512-ng00gfr9BhA2NPAOU5RWAlTiL+JcwAD+L+4yUD1sbBy6tgHdLiNBOvKtHISIF9RM9/eQeS0tAiWOYZGIH9JMew==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@rolldown/binding-linux-arm64-gnu@1.1.2': + resolution: {integrity: sha512-gBSUVO0eaWgw1JMjK3gB8BMlX2Mk148s2lTiVT3e9vjVxbl7UDfMWWY8CfIaaqiXuM9fVTMxIpUz6CAo/B6Vlw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@rolldown/binding-linux-arm64-musl@1.0.0-beta.40': + resolution: {integrity: sha512-mF0R1l9kLcaag/9cLEiYYdNZ4v1uuX4jklSDZ1s6vJE4RB3LirUney0FavdVRwCJ5sDvfvsPgXgtBXWYr2M2tQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + + '@rolldown/binding-linux-arm64-musl@1.1.2': + resolution: {integrity: sha512-LjQP/iZLBu8o8PjIfk4x3At0/mT6h282pvz8Z5LAyhGbu/kDezyO7ea62rF5uoqmgnIYqbN/MqJ3Si3Aymi7xQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + + '@rolldown/binding-linux-ppc64-gnu@1.1.2': + resolution: {integrity: sha512-X/7bVLWelEsbyWDUSXt7zVsTniLLPIY2n1rH58qr78l9i7MNbbxBWD8gI2vRfBWf4NUXJCUuQnfZDsp32LqsfQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@rolldown/binding-linux-s390x-gnu@1.1.2': + resolution: {integrity: sha512-gb6dYKW/1KDorGXyy48glEBJs/sxVSC5pcVrox/pFGV4mvwSFeg2sK5L2tRkVsVlh7kueqOgg4GEcuipJcGuKg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [s390x] + os: [linux] + + '@rolldown/binding-linux-x64-gnu@1.0.0-beta.40': + resolution: {integrity: sha512-+wi08S7wT5iLPHRZb0USrS6n+T6m+yY++dePYedE5uvKIpWCJJioFTaRtWjpm0V6dVNLcq2OukrvfdlGtH9Wgg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + + '@rolldown/binding-linux-x64-gnu@1.1.2': + resolution: {integrity: sha512-JY4w85pU3iAiJVMh5nuk4/Mh9GjMsupe8MrIN53rwxAZW64GKrWeJBuN6SxQg9QTU5uB1cxyhDzW8jqRn1EABw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + + '@rolldown/binding-linux-x64-musl@1.0.0-beta.40': + resolution: {integrity: sha512-W5qBGAemUocIBKCcOsDjlV9GUt28qhl/+M6etWBeLS5gQK0J6XDg0YVzfOQdvq57ZGjYNP0NvhYzqhOOnEx+4g==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + + '@rolldown/binding-linux-x64-musl@1.1.2': + resolution: {integrity: sha512-xvpA7o5KCYLB0Rwscmuylb1/zHHSUx4g4xilm4prC5jP76pEUlzBmMbgpbh7bVDbId4NcfT96gN5i6mE6UDaiw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + + '@rolldown/binding-openharmony-arm64@1.0.0-beta.40': + resolution: {integrity: sha512-vJwoDehtt+yqj2zacq1AqNc2uE/oh7mnRGqAUbuldV6pgvU01OSQUJ7Zu+35hTopnjFoDNN6mIezkYlGAv5RFA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [openharmony] + + '@rolldown/binding-openharmony-arm64@1.1.2': + resolution: {integrity: sha512-p/ts6KBLjuk49Bp21XH77poQGt02iNz7ChgHep7tudPOaLinR/De/RHdxF8w8Yj4r/bF/bqXwH6PZrB2sA+Nvw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [openharmony] + + '@rolldown/binding-wasm32-wasi@1.0.0-beta.40': + resolution: {integrity: sha512-Oj3YyqVUPurr1FlMpEE/bJmMC+VWAWPM/SGUfklO5KUX97bk5Q/733nPg4RykK8q8/TluJoQYvRc05vL/B74dw==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + + '@rolldown/binding-wasm32-wasi@1.1.2': + resolution: {integrity: sha512-VMu/wmrZ9hJzYlRhbw7jK5PODlugyKZ5mOdX78+lS8OvuFkWNQdz1pFLrI2p3P0pjXOmUZ7B48o5VnMH9QOGtg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [wasm32] + + '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.40': + resolution: {integrity: sha512-0ZtO6yN8XjVoFfN4HDWQj4nDu3ndMybr7jIM00DJqOmc+yFhly7rdOy7fNR9Sky3leCpBtsXfepVqRmVpYKPVA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [win32] + + '@rolldown/binding-win32-arm64-msvc@1.1.2': + resolution: {integrity: sha512-xtUJqs8qEkuSviS0n1tsohaPuz3a1SPhZywOji4Oo+sgrJs8daEDMZ0QtqL0OS7dx8PoVpg2J/ZZycPY5I2+Zg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [win32] + + '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.40': + resolution: {integrity: sha512-BPl1inoJXPpIe38Ja46E4y11vXlJyuleo+9Rmu//pYL5fIDYJkXUj/oAXqjSuwLcssrcwnuPgzvzvlz9++cr3w==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [ia32] + os: [win32] + + '@rolldown/binding-win32-x64-msvc@1.0.0-beta.40': + resolution: {integrity: sha512-UguA4ltbAk+nbwHRxqaUP/etpTbR0HjyNlsu4Zjbh/ytNbFsbw8CA4tEBkwDyjgI5NIPea6xY11zpl7R2/ddVA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [win32] + + '@rolldown/binding-win32-x64-msvc@1.1.2': + resolution: {integrity: sha512-85YiLQqjUKgSO/Zjnf9e0XIn5Ymrh1fLDWBeAkZqpuBR/3R8TpfoHXuyblqyQrftSSgWO9qpcHN8mkyKsLraoA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [win32] + + '@rolldown/pluginutils@1.0.0-beta.29': + resolution: {integrity: sha512-NIJgOsMjbxAXvoGq/X0gD7VPMQ8j9g0BiDaNjVNVjvl+iKXxL3Jre0v31RmBYeLEmkbj2s02v8vFTbUXi5XS2Q==} + + '@rolldown/pluginutils@1.0.0-beta.40': + resolution: {integrity: sha512-s3GeJKSQOwBlzdUrj4ISjJj5SfSh+aqn0wjOar4Bx95iV1ETI7F6S/5hLcfAxZ9kXDcyrAkxPlqmd1ZITttf+w==} + + '@rolldown/pluginutils@1.0.1': + resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==} + + '@rollup/pluginutils@5.1.4': + resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/rollup-android-arm-eabi@4.46.3': + resolution: {integrity: sha512-UmTdvXnLlqQNOCJnyksjPs1G4GqXNGW1LrzCe8+8QoaLhhDeTXYBgJ3k6x61WIhlHX2U+VzEJ55TtIjR/HTySA==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.46.3': + resolution: {integrity: sha512-8NoxqLpXm7VyeI0ocidh335D6OKT0UJ6fHdnIxf3+6oOerZZc+O7r+UhvROji6OspyPm+rrIdb1gTXtVIqn+Sg==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.46.3': + resolution: {integrity: sha512-csnNavqZVs1+7/hUKtgjMECsNG2cdB8F7XBHP6FfQjqhjF8rzMzb3SLyy/1BG7YSfQ+bG75Ph7DyedbUqwq1rA==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.46.3': + resolution: {integrity: sha512-r2MXNjbuYabSIX5yQqnT8SGSQ26XQc8fmp6UhlYJd95PZJkQD1u82fWP7HqvGUf33IsOC6qsiV+vcuD4SDP6iw==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-freebsd-arm64@4.46.3': + resolution: {integrity: sha512-uluObTmgPJDuJh9xqxyr7MV61Imq+0IvVsAlWyvxAaBSNzCcmZlhfYcRhCdMaCsy46ccZa7vtDDripgs9Jkqsw==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.46.3': + resolution: {integrity: sha512-AVJXEq9RVHQnejdbFvh1eWEoobohUYN3nqJIPI4mNTMpsyYN01VvcAClxflyk2HIxvLpRcRggpX1m9hkXkpC/A==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.46.3': + resolution: {integrity: sha512-byyflM+huiwHlKi7VHLAYTKr67X199+V+mt1iRgJenAI594vcmGGddWlu6eHujmcdl6TqSNnvqaXJqZdnEWRGA==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.46.3': + resolution: {integrity: sha512-aLm3NMIjr4Y9LklrH5cu7yybBqoVCdr4Nvnm8WB7PKCn34fMCGypVNpGK0JQWdPAzR/FnoEoFtlRqZbBBLhVoQ==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.46.3': + resolution: {integrity: sha512-VtilE6eznJRDIoFOzaagQodUksTEfLIsvXymS+UdJiSXrPW7Ai+WG4uapAc3F7Hgs791TwdGh4xyOzbuzIZrnw==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.46.3': + resolution: {integrity: sha512-dG3JuS6+cRAL0GQ925Vppafi0qwZnkHdPeuZIxIPXqkCLP02l7ka+OCyBoDEv8S+nKHxfjvjW4OZ7hTdHkx8/w==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-loongarch64-gnu@4.46.3': + resolution: {integrity: sha512-iU8DxnxEKJptf8Vcx4XvAUdpkZfaz0KWfRrnIRrOndL0SvzEte+MTM7nDH4A2Now4FvTZ01yFAgj6TX/mZl8hQ==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-ppc64-gnu@4.46.3': + resolution: {integrity: sha512-VrQZp9tkk0yozJoQvQcqlWiqaPnLM6uY1qPYXvukKePb0fqaiQtOdMJSxNFUZFsGw5oA5vvVokjHrx8a9Qsz2A==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.46.3': + resolution: {integrity: sha512-uf2eucWSUb+M7b0poZ/08LsbcRgaDYL8NCGjUeFMwCWFwOuFcZ8D9ayPl25P3pl+D2FH45EbHdfyUesQ2Lt9wA==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-riscv64-musl@4.46.3': + resolution: {integrity: sha512-7tnUcDvN8DHm/9ra+/nF7lLzYHDeODKKKrh6JmZejbh1FnCNZS8zMkZY5J4sEipy2OW1d1Ncc4gNHUd0DLqkSg==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.46.3': + resolution: {integrity: sha512-MUpAOallJim8CsJK+4Lc9tQzlfPbHxWDrGXZm2z6biaadNpvh3a5ewcdat478W+tXDoUiHwErX/dOql7ETcLqg==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.46.3': + resolution: {integrity: sha512-F42IgZI4JicE2vM2PWCe0N5mR5vR0gIdORPqhGQ32/u1S1v3kLtbZ0C/mi9FFk7C5T0PgdeyWEPajPjaUpyoKg==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.46.3': + resolution: {integrity: sha512-oLc+JrwwvbimJUInzx56Q3ujL3Kkhxehg7O1gWAYzm8hImCd5ld1F2Gry5YDjR21MNb5WCKhC9hXgU7rRlyegQ==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-win32-arm64-msvc@4.46.3': + resolution: {integrity: sha512-lOrQ+BVRstruD1fkWg9yjmumhowR0oLAAzavB7yFSaGltY8klttmZtCLvOXCmGE9mLIn8IBV/IFrQOWz5xbFPg==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.46.3': + resolution: {integrity: sha512-vvrVKPRS4GduGR7VMH8EylCBqsDcw6U+/0nPDuIjXQRbHJc6xOBj+frx8ksfZAh6+Fptw5wHrN7etlMmQnPQVg==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.46.3': + resolution: {integrity: sha512-fi3cPxCnu3ZeM3EwKZPgXbWoGzm2XHgB/WShKI81uj8wG0+laobmqy5wbgEwzstlbLu4MyO8C19FyhhWseYKNQ==} + cpu: [x64] + os: [win32] + + '@simonwep/pickr@1.8.2': + resolution: {integrity: sha512-/l5w8BIkrpP6n1xsetx9MWPWlU6OblN5YgZZphxan0Tq4BByTCETL6lyIeY8lagalS2Nbt4F2W034KHLIiunKA==} + + '@stylistic/eslint-plugin@5.4.0': + resolution: {integrity: sha512-UG8hdElzuBDzIbjG1QDwnYH0MQ73YLXDFHgZzB4Zh/YJfnw8XNsloVtytqzx0I2Qky9THSdpTmi8Vjn/pf/Lew==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: '>=9.0.0' + + '@tootallnate/once@2.0.0': + resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} + engines: {node: '>= 10'} + + '@tsconfig/node10@1.0.11': + resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} + + '@tsconfig/node12@1.0.11': + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} + + '@tsconfig/node14@1.0.3': + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} + + '@tsconfig/node16@1.0.4': + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} + + '@turf/bbox-polygon@6.5.0': + resolution: {integrity: sha512-+/r0NyL1lOG3zKZmmf6L8ommU07HliP4dgYToMoTxqzsWzyLjaj/OzgQ8rBmv703WJX+aS6yCmLuIhYqyufyuw==} + + '@turf/bbox@6.5.0': + resolution: {integrity: sha512-RBbLaao5hXTYyyg577iuMtDB8ehxMlUqHEJiMs8jT1GHkFhr6sYre3lmLsPeYEi/ZKj5TP5tt7fkzNdJ4GIVyw==} + + '@turf/clone@6.5.0': + resolution: {integrity: sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==} + + '@turf/helpers@6.5.0': + resolution: {integrity: sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==} + + '@turf/invariant@6.5.0': + resolution: {integrity: sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==} + + '@turf/meta@6.5.0': + resolution: {integrity: sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==} + + '@turf/polygon-to-line@6.5.0': + resolution: {integrity: sha512-5p4n/ij97EIttAq+ewSnKt0ruvuM+LIDzuczSzuHTpq4oS7Oq8yqg5TQ4nzMVuK41r/tALCk7nAoBuw3Su4Gcw==} + + '@turf/union@6.5.0': + resolution: {integrity: sha512-igYWCwP/f0RFHIlC2c0SKDuM/ObBaqSljI3IdV/x71805QbIvY/BYGcJdyNcgEA6cylIGl/0VSlIbpJHZ9ldhw==} + + '@tybys/wasm-util@0.10.1': + resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==} + + '@tybys/wasm-util@0.10.2': + resolution: {integrity: sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==} + + '@types/chai@5.2.2': + resolution: {integrity: sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==} + + '@types/crypto-js@4.2.2': + resolution: {integrity: sha512-sDOLlVbHhXpAUAL0YHDUUwDZf3iN4Bwi4W6a0W0b+QcAezUbRtH4FVb+9J4h+XFPW7l/gQ9F8qC7P+Ec4k8QVQ==} + + '@types/d3-timer@2.0.3': + resolution: {integrity: sha512-jhAJzaanK5LqyLQ50jJNIrB8fjL9gwWZTgYjevPvkDLMU+kTAZkYsobI59nYoeSrH1PucuyJEi247Pb90t6XUg==} + + '@types/debug@4.1.12': + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + + '@types/deep-eql@4.0.2': + resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==} + + '@types/estree@1.0.6': + resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} + + '@types/estree@1.0.8': + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + + '@types/fs-extra@11.0.4': + resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==} + + '@types/geojson@7946.0.15': + resolution: {integrity: sha512-9oSxFzDCT2Rj6DfcHF8G++jxBKS7mBqXl5xrRW+Kbvjry6Uduya2iiwqHPhVXpasAVMBYKkEPGgKhd3+/HZ6xA==} + + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + + '@types/jsonfile@6.1.4': + resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==} + + '@types/lodash-es@4.17.12': + resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==} + + '@types/lodash@4.17.20': + resolution: {integrity: sha512-H3MHACvFUEiujabxhaI/ImO6gUrd8oOurg7LQtS7mbwIXA/cUqWrvBsaeJ23aZEPk1TAYkurjfMbSELfoCXlGA==} + + '@types/mapbox__point-geometry@0.1.4': + resolution: {integrity: sha512-mUWlSxAmYLfwnRBmgYV86tgYmMIICX4kza8YnE/eIlywGe2XoOxlpVnXWwir92xRLjwyarqwpu2EJKD2pk0IUA==} + + '@types/mapbox__vector-tile@1.3.4': + resolution: {integrity: sha512-bpd8dRn9pr6xKvuEBQup8pwQfD4VUyqO/2deGjfpe6AwC8YRlyEipvefyRJUSiCJTZuCb8Pl1ciVV5ekqJ96Bg==} + + '@types/mdast@4.0.4': + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} + + '@types/minimist@1.2.5': + resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} + + '@types/ms@2.1.0': + resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} + + '@types/node@20.19.17': + resolution: {integrity: sha512-gfehUI8N1z92kygssiuWvLiwcbOB3IRktR6hTDgJlXMYh5OvkPSRmgfoBUmfZt+vhwJtX7v1Yw4KvvAf7c5QKQ==} + + '@types/normalize-package-data@2.4.4': + resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} + + '@types/parse-json@4.0.2': + resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} + + '@types/pbf@3.0.5': + resolution: {integrity: sha512-j3pOPiEcWZ34R6a6mN07mUkM4o4Lwf6hPNt8eilOeZhTFbxFXmKhvXl9Y28jotFPaI1bpPDJsbCprUoNke6OrA==} + + '@types/supercluster@7.1.3': + resolution: {integrity: sha512-Z0pOY34GDFl3Q6hUFYf3HkTwKEE02e7QgtJppBt+beEAxnyOpJua+voGFvxINBHa06GwLFFym7gRPY2SiKIfIA==} + + '@types/treeify@1.0.3': + resolution: {integrity: sha512-hx0o7zWEUU4R2Amn+pjCBQQt23Khy/Dk56gQU5xi5jtPL1h83ACJCeFaB2M/+WO1AntvWrSoVnnCAfI1AQH4Cg==} + + '@types/unist@2.0.11': + resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} + + '@types/unist@3.0.3': + resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} + + '@types/web-bluetooth@0.0.20': + resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==} + + '@typescript-eslint/eslint-plugin@8.44.1': + resolution: {integrity: sha512-molgphGqOBT7t4YKCSkbasmu1tb1MgrZ2szGzHbclF7PNmOkSTQVHy+2jXOSnxvR3+Xe1yySHFZoqMpz3TfQsw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@typescript-eslint/parser': ^8.44.1 + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/parser@8.44.1': + resolution: {integrity: sha512-EHrrEsyhOhxYt8MTg4zTF+DJMuNBzWwgvvOYNj/zm1vnaD/IC5zCXFehZv94Piqa2cRFfXrTFxIvO95L7Qc/cw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/project-service@8.44.1': + resolution: {integrity: sha512-ycSa60eGg8GWAkVsKV4E6Nz33h+HjTXbsDT4FILyL8Obk5/mx4tbvCNsLf9zret3ipSumAOG89UcCs/KRaKYrA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/scope-manager@8.44.1': + resolution: {integrity: sha512-NdhWHgmynpSvyhchGLXh+w12OMT308Gm25JoRIyTZqEbApiBiQHD/8xgb6LqCWCFcxFtWwaVdFsLPQI3jvhywg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/tsconfig-utils@8.44.1': + resolution: {integrity: sha512-B5OyACouEjuIvof3o86lRMvyDsFwZm+4fBOqFHccIctYgBjqR3qT39FBYGN87khcgf0ExpdCBeGKpKRhSFTjKQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/type-utils@8.44.1': + resolution: {integrity: sha512-KdEerZqHWXsRNKjF9NYswNISnFzXfXNDfPxoTh7tqohU/PRIbwTmsjGK6V9/RTYWau7NZvfo52lgVk+sJh0K3g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/types@8.18.2': + resolution: {integrity: sha512-Z/zblEPp8cIvmEn6+tPDIHUbRu/0z5lqZ+NvolL5SvXWT5rQy7+Nch83M0++XzO0XrWRFWECgOAyE8bsJTl1GQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/types@8.44.1': + resolution: {integrity: sha512-Lk7uj7y9uQUOEguiDIDLYLJOrYHQa7oBiURYVFqIpGxclAFQ78f6VUOM8lI2XEuNOKNB7XuvM2+2cMXAoq4ALQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/typescript-estree@8.44.1': + resolution: {integrity: sha512-qnQJ+mVa7szevdEyvfItbO5Vo+GfZ4/GZWWDRRLjrxYPkhM+6zYB2vRYwCsoJLzqFCdZT4mEqyJoyzkunsZ96A==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/utils@8.44.1': + resolution: {integrity: sha512-DpX5Fp6edTlocMCwA+mHY8Mra+pPjRZ0TfHkXI8QFelIKcbADQz1LUPNtzOFUriBB2UYqw4Pi9+xV4w9ZczHFg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <6.0.0' + + '@typescript-eslint/visitor-keys@8.44.1': + resolution: {integrity: sha512-576+u0QD+Jp3tZzvfRfxon0EA2lzcDt3lhUbsC6Lgzy9x2VR4E+JUiNyGHi5T8vk0TV+fpJ5GLG1JsJuWCaKhw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@unocss/astro@66.5.2': + resolution: {integrity: sha512-JUiJL4wkDTCFgReQ+c1Nqb47EfryJvGiSp9MxXclCUbp5hegqq7yMg3BMpJ4QzHmf5EeDFO38eRBKV57hd0Iew==} + peerDependencies: + vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0 + peerDependenciesMeta: + vite: + optional: true + + '@unocss/cli@66.5.2': + resolution: {integrity: sha512-WFj3fd5LqPX2/NvG/kX4vxML14F5yU6e0yPezO+7fjrJ9V31m1AFQWfiT2p8HbNUcQd9jZ9lcoWLm3Q1FsdPDA==} + engines: {node: '>=14'} + hasBin: true + + '@unocss/config@66.5.2': + resolution: {integrity: sha512-rREBBt2a6aZJ21TCeKG3/wjHfTNPbIwdrJtIVrN7hLcljW2vnWuyYabZ1yASK8+lnNsMoBoU5mbakgrPF0MItA==} + engines: {node: '>=14'} + + '@unocss/core@0.62.4': + resolution: {integrity: sha512-Cc+Vo6XlaQpyVejkJrrzzWtiK9pgMWzVVBpm9VCVtwZPUjD4GSc+g7VQCPXSsr7m03tmSuRySJx72QcASmauNQ==} + + '@unocss/core@66.5.2': + resolution: {integrity: sha512-POSEpwj2FJtrDgzSq6nVhAJbnGIYPqtEMTpzQXfeFqPDMidAXjaH/xZUeTdHDbI9Jg700smrRXJtFJrJFXkmiQ==} + + '@unocss/extractor-arbitrary-variants@0.62.4': + resolution: {integrity: sha512-e4hJfBMyFr6T6dYSTTjNv9CQwaU1CVEKxDlYP0GpfSgxsV58pguID9j1mt0/XZD6LvEDzwxj9RTRWKpUSWqp+Q==} + + '@unocss/extractor-arbitrary-variants@66.5.2': + resolution: {integrity: sha512-MNHzhA4RKJJVo6D5Uc+SkPfeugO1KXDt0GFg0FkOUKTTnahxyXNvd9BG9HHYlKSiaYCgUhFmysNhv04Gza+CNg==} + + '@unocss/inspector@66.5.2': + resolution: {integrity: sha512-8PuM01lrsOuyas3K+5LqeoeiujIGk72ivvJsP4/T8h03XQWzpS7NPJU6JVJQUcYZAE+WtqFcPJ8wcg0ERKNPdA==} + + '@unocss/postcss@66.5.2': + resolution: {integrity: sha512-tZrWVcGm1cJghYqRFgiCb/HCnWehdJ3/6lUlXN5Ogfu4agCa3f8QES43+6TMpuTKdqkjXvMI3jZFKNMgN+/wlg==} + engines: {node: '>=14'} + peerDependencies: + postcss: ^8.4.21 + + '@unocss/preset-attributify@66.5.2': + resolution: {integrity: sha512-/FigYbT1uA5DLy5dVV2QuTizvSge8jZZZu3uGAu25p59m/h/6ZjvkCoiKcTkvmNUuZfj/ZPZmAE8GoSn1uR++A==} + + '@unocss/preset-icons@66.5.2': + resolution: {integrity: sha512-vjSwttkZrU8FfIo4TCkSOAIba0xbWE6N3/xEdK3tjq+FSgClzs9SmO06KLJHSntJ/N5JYA0wpkPS5mLYxGMwqw==} + + '@unocss/preset-mini@0.62.4': + resolution: {integrity: sha512-1O+QpQFx7FT61aheAZEYemW5e4AGib8TFGm+rWLudKq2IBNnXHcS5xsq5QvqdC7rp9Dn3lnW5du6ijow5kCBuw==} + + '@unocss/preset-mini@66.5.2': + resolution: {integrity: sha512-YLOuYq7GNoWNgF3P41AtcvnOodSP49x0RNM4PR/ntGddl0BfsFaKeCGzt8DpbvavhQpBn0+kt4GP3RajKooAIQ==} + + '@unocss/preset-tagify@66.5.2': + resolution: {integrity: sha512-6AusDr1rD+HK22F4kwPLWqOImV3W+0nyPMsUwLVHQeaZktpSFSqaIQCI6aIVWyftvW/paST1Xc4HEHb7rKBF/w==} + + '@unocss/preset-typography@66.5.2': + resolution: {integrity: sha512-Ez3VWrNlJVa9cywsI/IwUdZ4OUeeUvf04pZmf+bwSU3CHqfonRT8K3+ndHQfuTJYbIb1k3few+cc1P1W7NP7Xw==} + + '@unocss/preset-uno@66.5.2': + resolution: {integrity: sha512-+raFp6uRwvQVIS7y8JoQI+5PPodl+uNsHxL9uH/JkelB5++ACrcP/ShN8RrDD97K+wtSP+3kr9SsK6dk0f2Mpg==} + + '@unocss/preset-web-fonts@66.5.2': + resolution: {integrity: sha512-xMFUE8Bhe2X/VlUBtdXTnDrrZL+WE99RaiBNLS1F1Na5r4Fc5Ck0p8a+SnMB7GDx5gtwf1ekKwi0pAP8+vIJnQ==} + + '@unocss/preset-wind3@66.5.2': + resolution: {integrity: sha512-qgzLiPd6CkepLLssBod7ejQ4sKKqAvCOyjqpp0eFmHVUKGBEGPzOI1/WnbrAzvTHDonbSc52kB/XEWlgWmDhhA==} + + '@unocss/preset-wind4@66.5.2': + resolution: {integrity: sha512-493Vb1do+05+3tdE0kU+SUKAPG9Spd+hItKfc09OL276T1DMj7AZzIq5q+rj9e+bOAjWAAutjw94RPNjKlU3fA==} + + '@unocss/preset-wind@66.5.2': + resolution: {integrity: sha512-jJN7kLXNAn/6VpYWTrIJGsXAhziPlPhK7bdnilbVnrlTSOluG6peCE6gdUyjdlLDyYELzz8qZ7ZvOo77IsBkPQ==} + + '@unocss/reset@66.5.2': + resolution: {integrity: sha512-DirXdqrkSp3fThRGOz0s0ehsYBpLb72Vh4QlPfMFuwHHFC9P9IDTLMUj5kD51A9fdy07Wrmhs7T5CQ//DlfOdQ==} + + '@unocss/rule-utils@0.62.4': + resolution: {integrity: sha512-XUwLbLUzL+VSHCJNK5QBHC9RbFehumge1/XJmsRfmh0+oxgJoO1gvEvxi57gYEmdJdMRJHRJZ66se6+cB0Ymvw==} + engines: {node: '>=14'} + + '@unocss/rule-utils@66.5.2': + resolution: {integrity: sha512-2eR5TBTO+cmPY9ahFjyEu8qP/NFPI02dVpI0rgGKdyDMv/PnO9+yS/9rKgrmXsN3nPYHjOrLutRXkF/xxm/t3w==} + engines: {node: '>=14'} + + '@unocss/transformer-attributify-jsx@66.5.2': + resolution: {integrity: sha512-mTa+fMKVz96He21E6FYCJyd0QbL6Xr5JjdqZEEFZiwt9N884g89pHZOlEURmrkQBrWc5NwSfzNB7lCkhuUOIFQ==} + + '@unocss/transformer-compile-class@66.5.2': + resolution: {integrity: sha512-50UTeKH6zycAzF44+6eCW13uPy5bw3W3Z8miEAIj0cNaKHTul0QYQFhLT3R804cnkAdX/Cp6IE/HSivxeP5ueQ==} + + '@unocss/transformer-directives@66.5.2': + resolution: {integrity: sha512-hwbAdV1Vr001ojaXR8rVt4jJvPnrAjl9h2SQWjaqyGkLntnKvFB8JSTS9CT0cyv1GrwiBAwdnVIdioLAQ3GPbg==} + + '@unocss/transformer-variant-group@66.5.2': + resolution: {integrity: sha512-ZgH4hgoIbbh92pszsT2M93e/DcEmN+s9yjYPPCa0qxvTQb6aANM02Z6T7OE0ltQ0NShELfIS4oSGUKY6ezHwug==} + + '@unocss/vite@66.5.2': + resolution: {integrity: sha512-0OcvZHV7ag8ml9z1pG0T92b81CP8nOv21o9vZnQUJN4Uw+8fnVA9xCh1X68IfDNr5Q8nS5zz/Fjr/pC89Cb+og==} + peerDependencies: + vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0 + + '@v-c/utils@0.0.26': + resolution: {integrity: sha512-ClcZxr/DMNHe578gExOOzR54gQgniKA0Ltbm7W5lfw5VwSwx5wdsD4qp5530PmAVacDqyPMWWL1zBKx+ZeuATQ==} + + '@vitejs/plugin-vue-jsx@5.1.1': + resolution: {integrity: sha512-uQkfxzlF8SGHJJVH966lFTdjM/lGcwJGzwAHpVqAPDD/QcsqoUGa+q31ox1BrUfi+FLP2ChVp7uLXE3DkHyDdQ==} + engines: {node: ^20.19.0 || >=22.12.0} + peerDependencies: + vite: ^5.0.0 || ^6.0.0 || ^7.0.0 + vue: ^3.0.0 + + '@vitejs/plugin-vue@6.0.1': + resolution: {integrity: sha512-+MaE752hU0wfPFJEUAIxqw18+20euHHdxVtMvbFcOEpjEyfqXH/5DCoTHiVJ0J29EhTJdoTkjEv5YBKU9dnoTw==} + engines: {node: ^20.19.0 || >=22.12.0} + peerDependencies: + vite: ^5.0.0 || ^6.0.0 || ^7.0.0 + vue: ^3.2.25 + + '@vitest/eslint-plugin@1.3.12': + resolution: {integrity: sha512-cSEyUYGj8j8SLqKrzN7BlfsJ3wG67eRT25819PXuyoSBogLXiyagdKx4MHWHV1zv+EEuyMXsEKkBEKzXpxyBrg==} + peerDependencies: + eslint: '>= 8.57.0' + typescript: '>= 5.0.0' + vitest: '*' + peerDependenciesMeta: + typescript: + optional: true + vitest: + optional: true + + '@vitest/expect@3.2.4': + resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==} + + '@vitest/mocker@3.2.4': + resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==} + peerDependencies: + msw: ^2.4.9 + vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0 + peerDependenciesMeta: + msw: + optional: true + vite: + optional: true + + '@vitest/pretty-format@3.2.4': + resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==} + + '@vitest/runner@3.2.4': + resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==} + + '@vitest/snapshot@3.2.4': + resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==} + + '@vitest/spy@3.2.4': + resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==} + + '@vitest/utils@3.2.4': + resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==} + + '@volar/language-core@2.4.23': + resolution: {integrity: sha512-hEEd5ET/oSmBC6pi1j6NaNYRWoAiDhINbT8rmwtINugR39loROSlufGdYMF9TaKGfz+ViGs1Idi3mAhnuPcoGQ==} + + '@volar/source-map@2.4.23': + resolution: {integrity: sha512-Z1Uc8IB57Lm6k7q6KIDu/p+JWtf3xsXJqAX/5r18hYOTpJyBn0KXUR8oTJ4WFYOcDzWC9n3IflGgHowx6U6z9Q==} + + '@volar/typescript@2.4.23': + resolution: {integrity: sha512-lAB5zJghWxVPqfcStmAP1ZqQacMpe90UrP5RJ3arDyrhy4aCUQqmxPPLB2PWDKugvylmO41ljK7vZ+t6INMTag==} + + '@vue/babel-helper-vue-transform-on@1.5.0': + resolution: {integrity: sha512-0dAYkerNhhHutHZ34JtTl2czVQHUNWv6xEbkdF5W+Yrv5pCWsqjeORdOgbtW2I9gWlt+wBmVn+ttqN9ZxR5tzA==} + + '@vue/babel-plugin-jsx@1.5.0': + resolution: {integrity: sha512-mneBhw1oOqCd2247O0Yw/mRwC9jIGACAJUlawkmMBiNmL4dGA2eMzuNZVNqOUfYTa6vqmND4CtOPzmEEEqLKFw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + peerDependenciesMeta: + '@babel/core': + optional: true + + '@vue/babel-plugin-resolve-type@1.5.0': + resolution: {integrity: sha512-Wm/60o+53JwJODm4Knz47dxJnLDJ9FnKnGZJbUUf8nQRAtt6P+undLUAVU3Ha33LxOJe6IPoifRQ6F/0RrU31w==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@vue/compiler-core@3.5.18': + resolution: {integrity: sha512-3slwjQrrV1TO8MoXgy3aynDQ7lslj5UqDxuHnrzHtpON5CBinhWjJETciPngpin/T3OuW3tXUf86tEurusnztw==} + + '@vue/compiler-core@3.5.22': + resolution: {integrity: sha512-jQ0pFPmZwTEiRNSb+i9Ow/I/cHv2tXYqsnHKKyCQ08irI2kdF5qmYedmF8si8mA7zepUFmJ2hqzS8CQmNOWOkQ==} + + '@vue/compiler-dom@3.5.18': + resolution: {integrity: sha512-RMbU6NTU70++B1JyVJbNbeFkK+A+Q7y9XKE2EM4NLGm2WFR8x9MbAtWxPPLdm0wUkuZv9trpwfSlL6tjdIa1+A==} + + '@vue/compiler-dom@3.5.22': + resolution: {integrity: sha512-W8RknzUM1BLkypvdz10OVsGxnMAuSIZs9Wdx1vzA3mL5fNMN15rhrSCLiTm6blWeACwUwizzPVqGJgOGBEN/hA==} + + '@vue/compiler-sfc@3.5.18': + resolution: {integrity: sha512-5aBjvGqsWs+MoxswZPoTB9nSDb3dhd1x30xrrltKujlCxo48j8HGDNj3QPhF4VIS0VQDUrA1xUfp2hEa+FNyXA==} + + '@vue/compiler-sfc@3.5.22': + resolution: {integrity: sha512-tbTR1zKGce4Lj+JLzFXDq36K4vcSZbJ1RBu8FxcDv1IGRz//Dh2EBqksyGVypz3kXpshIfWKGOCcqpSbyGWRJQ==} + + '@vue/compiler-ssr@3.5.18': + resolution: {integrity: sha512-xM16Ak7rSWHkM3m22NlmcdIM+K4BMyFARAfV9hYFl+SFuRzrZ3uGMNW05kA5pmeMa0X9X963Kgou7ufdbpOP9g==} + + '@vue/compiler-ssr@3.5.22': + resolution: {integrity: sha512-GdgyLvg4R+7T8Nk2Mlighx7XGxq/fJf9jaVofc3IL0EPesTE86cP/8DD1lT3h1JeZr2ySBvyqKQJgbS54IX1Ww==} + + '@vue/compiler-vue2@2.7.16': + resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==} + + '@vue/devtools-api@6.6.4': + resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==} + + '@vue/language-core@3.0.8': + resolution: {integrity: sha512-eYs6PF7bxoPYvek9qxceo1BCwFbJZYqJll+WaYC8o8ec60exqj+n+QRGGiJHSeUfYp0hDxARbMdxMq/fbPgU5g==} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@vue/reactivity@3.5.22': + resolution: {integrity: sha512-f2Wux4v/Z2pqc9+4SmgZC1p73Z53fyD90NFWXiX9AKVnVBEvLFOWCEgJD3GdGnlxPZt01PSlfmLqbLYzY/Fw4A==} + + '@vue/runtime-core@3.5.22': + resolution: {integrity: sha512-EHo4W/eiYeAzRTN5PCextDUZ0dMs9I8mQ2Fy+OkzvRPUYQEyK9yAjbasrMCXbLNhF7P0OUyivLjIy0yc6VrLJQ==} + + '@vue/runtime-dom@3.5.22': + resolution: {integrity: sha512-Av60jsryAkI023PlN7LsqrfPvwfxOd2yAwtReCjeuugTJTkgrksYJJstg1e12qle0NarkfhfFu1ox2D+cQotww==} + + '@vue/server-renderer@3.5.22': + resolution: {integrity: sha512-gXjo+ao0oHYTSswF+a3KRHZ1WszxIqO7u6XwNHqcqb9JfyIL/pbWrrh/xLv7jeDqla9u+LK7yfZKHih1e1RKAQ==} + peerDependencies: + vue: 3.5.22 + + '@vue/shared@3.5.18': + resolution: {integrity: sha512-cZy8Dq+uuIXbxCZpuLd2GJdeSO/lIzIspC2WtkqIpje5QyFbvLaI5wZtdUjLHjGZrlVX6GilejatWwVYYRc8tA==} + + '@vue/shared@3.5.22': + resolution: {integrity: sha512-F4yc6palwq3TT0u+FYf0Ns4Tfl9GRFURDN2gWG7L1ecIaS/4fCIuFOjMTnCyjsu/OK6vaDKLCrGAa+KvvH+h4w==} + + '@vue/test-utils@2.4.6': + resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==} + + '@vueuse/core@10.11.1': + resolution: {integrity: sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==} + + '@vueuse/metadata@10.11.1': + resolution: {integrity: sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==} + + '@vueuse/shared@10.11.1': + resolution: {integrity: sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==} + + '@webgpu/types@0.1.52': + resolution: {integrity: sha512-eI883Nlag2hGIkhXxAnq8s4APpqXWuPL3Gbn2ghiU12UjLvfCbVqHK4XfXl3eLRTatqcMmeK7jws7IwWsGfbzw==} + + JSONStream@1.3.5: + resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} + hasBin: true + + abab@2.0.6: + resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + deprecated: Use your platform's native atob() and btoa() methods instead + + abbrev@2.0.0: + resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + acorn-walk@8.3.4: + resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} + engines: {node: '>=0.4.0'} + + acorn@8.14.0: + resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} + engines: {node: '>=0.4.0'} + hasBin: true + + acorn@8.15.0: + resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} + engines: {node: '>=0.4.0'} + hasBin: true + + agent-base@6.0.2: + resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + engines: {node: '>= 6.0.0'} + + agent-base@7.1.3: + resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==} + engines: {node: '>= 14'} + + ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + + ajv@8.17.1: + resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} + + alien-signals@2.0.6: + resolution: {integrity: sha512-P3TxJSe31bUHBiblg59oU1PpaWPtmxF9GhJ/cB7OkgJ0qN/ifFSKUI25/v8ZhsT+lIG6ac8DpTOplXxORX6F3Q==} + + align-text@0.1.4: + resolution: {integrity: sha512-GrTZLRpmp6wIC2ztrWW9MjjTgSKccffgFagbNDOX95/dcjEcYZibYTeaOntySQLcdw1ztBoFkviiUvTMbb9MYg==} + engines: {node: '>=0.10.0'} + + amdefine@1.0.1: + resolution: {integrity: sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==} + engines: {node: '>=0.4.2'} + + ansi-escapes@5.0.0: + resolution: {integrity: sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==} + engines: {node: '>=12'} + + ansi-regex@2.1.1: + resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} + engines: {node: '>=0.10.0'} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-regex@6.1.0: + resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} + engines: {node: '>=12'} + + ansi-styles@2.2.1: + resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} + engines: {node: '>=0.10.0'} + + ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + + ansis@4.1.0: + resolution: {integrity: sha512-BGcItUBWSMRgOCe+SVZJ+S7yTRG0eGt9cXAHev72yuGcY23hnLA7Bky5L/xLyPINoSN95geovfBkqoTlNZYa7w==} + engines: {node: '>=14'} + + ant-design-vue@4.2.6: + resolution: {integrity: sha512-t7eX13Yj3i9+i5g9lqFyYneoIb3OzTvQjq9Tts1i+eiOd3Eva/6GagxBSXM1fOCjqemIu0FYVE1ByZ/38epR3Q==} + engines: {node: '>=12.22.0'} + peerDependencies: + vue: '>=3.2.0' + + antdv-component-resolver@1.0.8: + resolution: {integrity: sha512-bRK/sBwPSetzOJ8mKRXMnZaWCRGgRuusvm10DMZKvYgdSinI/pQ9M9PzHc29Tl06IjqVEvv5U68SUFl9pZPpXg==} + peerDependencies: + unplugin-vue-components: '>=0.26.0 | >=28.0.0' + + antdv-style@0.0.1-beta.4: + resolution: {integrity: sha512-77IpYFjuAeJjXf0wrDF093P2GTdjluleqKuoe3sThrdGiW+owytx/xE+QfZV6NzleoGYCpxJwCXvNwTPa6aEVA==} + peerDependencies: + ant-design-vue: '>=4.0' + vue: ^3.0 + + anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + + are-docs-informative@0.0.2: + resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==} + engines: {node: '>=14'} + + arg@4.1.3: + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + arr-union@3.1.0: + resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} + engines: {node: '>=0.10.0'} + + array-back@3.1.0: + resolution: {integrity: sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==} + engines: {node: '>=6'} + + array-back@4.0.2: + resolution: {integrity: sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==} + engines: {node: '>=8'} + + array-buffer-byte-length@1.0.2: + resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} + engines: {node: '>= 0.4'} + + array-ify@1.0.0: + resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} + + array-tree-filter@2.1.0: + resolution: {integrity: sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw==} + + arraybuffer.prototype.slice@1.0.4: + resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} + engines: {node: '>= 0.4'} + + arrify@1.0.1: + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} + engines: {node: '>=0.10.0'} + + as-number@1.0.0: + resolution: {integrity: sha512-HkI/zLo2AbSRO4fqVkmyf3hms0bJDs3iboHqTrNuwTiCRvdYXM7HFhfhB6Dk51anV2LM/IMB83mtK9mHw4FlAg==} + + assertion-error@2.0.1: + resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} + engines: {node: '>=12'} + + assign-symbols@1.0.0: + resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} + engines: {node: '>=0.10.0'} + + ast-kit@2.1.2: + resolution: {integrity: sha512-cl76xfBQM6pztbrFWRnxbrDm9EOqDr1BF6+qQnnDZG2Co2LjyUktkN9GTJfBAfdae+DbT2nJf2nCGAdDDN7W2g==} + engines: {node: '>=20.18.0'} + + async-validator@4.2.5: + resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==} + + async@3.2.6: + resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} + + asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + + available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} + + axios@1.12.2: + resolution: {integrity: sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==} + + babel-plugin-macros@3.1.0: + resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} + engines: {node: '>=10', npm: '>=6'} + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + baseline-browser-mapping@2.8.6: + resolution: {integrity: sha512-wrH5NNqren/QMtKUEEJf7z86YjfqW/2uw3IL3/xpqZUC95SSVIFXYQeeGjL6FT/X68IROu6RMehZQS5foy2BXw==} + hasBin: true + + batch-processor@1.0.0: + resolution: {integrity: sha512-xoLQD8gmmR32MeuBHgH0Tzd5PuSZx71ZsbhVxOCRbgktZEPe4SQy7s9Z50uPp0F/f7iw2XmkHN2xkgbMfckMDA==} + + binary-extensions@2.3.0: + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + engines: {node: '>=8'} + + birpc@2.5.0: + resolution: {integrity: sha512-VSWO/W6nNQdyP520F1mhf+Lc2f8pjGQOtoHHm7Ze8Go1kX7akpVIrtTa0fn+HB0QJEDVacl6aO08YE0PgXfdnQ==} + + boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + + brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + + brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + browserslist@4.24.3: + resolution: {integrity: sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + browserslist@4.26.2: + resolution: {integrity: sha512-ECFzp6uFOSB+dcZ5BK/IBaGWssbSYBHvuMeMt3MMFyhI0Z8SqGgEkBLARgpRH3hutIgPVsALcMwbDrJqPxQ65A==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + buffer-from@0.1.2: + resolution: {integrity: sha512-RiWIenusJsmI2KcvqQABB83tLxCByE3upSP8QU3rJDMVFGPWLvPQJt/O1Su9moRWeH7d+Q2HYb68f6+v+tw2vg==} + + buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + + builtin-modules@5.0.0: + resolution: {integrity: sha512-bkXY9WsVpY7CvMhKSR6pZilZu9Ln5WDrKVBUXf2S443etkmEO4V58heTecXcUIsNsi4Rx8JUO4NfX1IcQl4deg==} + engines: {node: '>=18.20'} + + bundle-name@4.1.0: + resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==} + engines: {node: '>=18'} + + bytewise-core@1.2.3: + resolution: {integrity: sha512-nZD//kc78OOxeYtRlVk8/zXqTB4gf/nlguL1ggWA8FuchMyOxcyHR4QPQZMUmA7czC+YnaBrPUCubqAWe50DaA==} + + bytewise@1.1.0: + resolution: {integrity: sha512-rHuuseJ9iQ0na6UDhnrRVDh8YnWVlU6xM3VH6q/+yHDeUH2zIhUzP+2/h3LIrhLDBtTqzWpE3p3tP/boefskKQ==} + + c12@1.11.2: + resolution: {integrity: sha512-oBs8a4uvSDO9dm8b7OCFW7+dgtVrwmwnrVXYzLm43ta7ep2jCn/0MhoUFygIWtxhyy6+/MG7/agvpY0U1Iemew==} + peerDependencies: + magicast: ^0.3.4 + peerDependenciesMeta: + magicast: + optional: true + + cac@6.7.14: + resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} + engines: {node: '>=8'} + + call-bind-apply-helpers@1.0.1: + resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==} + engines: {node: '>= 0.4'} + + call-bind@1.0.8: + resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} + engines: {node: '>= 0.4'} + + call-bound@1.0.3: + resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==} + engines: {node: '>= 0.4'} + + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + camelcase-keys@6.2.2: + resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} + engines: {node: '>=8'} + + camelcase@1.2.1: + resolution: {integrity: sha512-wzLkDa4K/mzI1OSITC+DUyjgIl/ETNHE9QvYgy6J6Jvqyyz4C0Xfd+lQhb19sX2jMpZV4IssUn0VDVmglV+s4g==} + engines: {node: '>=0.10.0'} + + camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + + caniuse-lite@1.0.30001690: + resolution: {integrity: sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==} + + caniuse-lite@1.0.30001743: + resolution: {integrity: sha512-e6Ojr7RV14Un7dz6ASD0aZDmQPT/A+eZU+nuTNfjqmRrmkmQlnTNWH0SKmqagx9PeW87UVqapSurtAXifmtdmw==} + + ccount@2.0.1: + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + + center-align@0.1.3: + resolution: {integrity: sha512-Baz3aNe2gd2LP2qk5U+sDk/m4oSuwSDcBfayTCTBoWpfIGO5XFxPmjILQII4NGiZjD6DoDI6kf7gKaxkf7s3VQ==} + engines: {node: '>=0.10.0'} + + chai@5.3.1: + resolution: {integrity: sha512-48af6xm9gQK8rhIcOxWwdGzIervm8BVTin+yRp9HEvU20BtVZ2lBywlIJBzwaDtvo0FvjeL7QdCADoUoqIbV3A==} + engines: {node: '>=18'} + + chalk@1.1.3: + resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} + engines: {node: '>=0.10.0'} + + chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + chalk@5.3.0: + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + + chalk@5.6.0: + resolution: {integrity: sha512-46QrSQFyVSEyYAgQ22hQ+zDa60YHA4fBstHmtSApj1Y5vKtG27fWowW03jCk5KcbXEWPZUIR894aARCA/G1kfQ==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + + change-case@5.4.4: + resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==} + + changelogen@0.5.7: + resolution: {integrity: sha512-cTZXBcJMl3pudE40WENOakXkcVtrbBpbkmSkM20NdRiUqa4+VYRdXdEsgQ0BNQ6JBE2YymTNWtPKVF7UCTN5+g==} + hasBin: true + + character-entities@2.0.2: + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + + check-error@2.1.1: + resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} + engines: {node: '>= 16'} + + chokidar@3.6.0: + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} + engines: {node: '>= 8.10.0'} + + chokidar@4.0.3: + resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} + engines: {node: '>= 14.16.0'} + + chownr@2.0.0: + resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} + engines: {node: '>=10'} + + ci-info@4.3.0: + resolution: {integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==} + engines: {node: '>=8'} + + citty@0.1.6: + resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} + + clean-regexp@1.0.0: + resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==} + engines: {node: '>=4'} + + cli-cursor@4.0.0: + resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + cli-truncate@3.1.0: + resolution: {integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + cliui@2.1.0: + resolution: {integrity: sha512-GIOYRizG+TGoc7Wgc1LiOTLare95R3mzKgoln+Q/lE4ceiYH19gUpl0l0Ffq4lJDEf3FxujMe6IBfOCs7pfqNA==} + + cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + + color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + + combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + + command-line-args@5.2.1: + resolution: {integrity: sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==} + engines: {node: '>=4.0.0'} + + command-line-usage@6.1.3: + resolution: {integrity: sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==} + engines: {node: '>=8.0.0'} + + commander@10.0.1: + resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} + engines: {node: '>=14'} + + commander@11.0.0: + resolution: {integrity: sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==} + engines: {node: '>=16'} + + commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + + comment-parser@1.4.1: + resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==} + engines: {node: '>= 12.0.0'} + + compare-func@2.0.0: + resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} + + compute-scroll-into-view@1.0.20: + resolution: {integrity: sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + confbox@0.1.8: + resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} + + confbox@0.2.2: + resolution: {integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==} + + config-chain@1.1.13: + resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} + + consola@3.3.3: + resolution: {integrity: sha512-Qil5KwghMzlqd51UXM0b6fyaGHtOC22scxrwrz4A2882LyUMwQjnvaedN1HAeXzphspQ6CpHkzMAWxBTUruDLg==} + engines: {node: ^14.18.0 || >=16.10.0} + + consola@3.4.2: + resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==} + engines: {node: ^14.18.0 || >=16.10.0} + + contour_plot@0.0.1: + resolution: {integrity: sha512-Nil2HI76Xux6sVGORvhSS8v66m+/h5CwFkBJDO+U5vWaMdNC0yXNCsGDPbzPhvqOEU5koebhdEvD372LI+IyLw==} + + conventional-changelog-angular@7.0.0: + resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==} + engines: {node: '>=16'} + + conventional-changelog-conventionalcommits@7.0.2: + resolution: {integrity: sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==} + engines: {node: '>=16'} + + conventional-commits-parser@5.0.0: + resolution: {integrity: sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==} + engines: {node: '>=16'} + hasBin: true + + convert-gitmoji@0.1.5: + resolution: {integrity: sha512-4wqOafJdk2tqZC++cjcbGcaJ13BZ3kwldf06PTiAQRAB76Z1KJwZNL1SaRZMi2w1FM9RYTgZ6QErS8NUl/GBmQ==} + + convert-source-map@1.9.0: + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + + convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + + cookie-es@2.0.0: + resolution: {integrity: sha512-RAj4E421UYRgqokKUmotqAwuplYw15qtdXfY+hGzgCJ/MBjCVZcSoHK/kH9kocfjRjcDME7IiDWR/1WX1TM2Pg==} + + copy-anything@2.0.6: + resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} + + core-js-compat@3.45.1: + resolution: {integrity: sha512-tqTt5T4PzsMIZ430XGviK4vzYSoeNJ6CXODi6c/voxOT6IZqBht5/EKaSNnYiEjjRYxjVz7DQIsOsY0XNi8PIA==} + + core-js@3.39.0: + resolution: {integrity: sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g==} + + core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + + cosmiconfig-typescript-loader@5.1.0: + resolution: {integrity: sha512-7PtBB+6FdsOvZyJtlF3hEPpACq7RQX6BVGsgC7/lfVXnKMvNCu/XY3ykreqG5w/rBNdu2z8LCIKoF3kpHHdHlA==} + engines: {node: '>=v16'} + peerDependencies: + '@types/node': '*' + cosmiconfig: '>=8.2' + typescript: '>=4' + + cosmiconfig@7.1.0: + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} + + cosmiconfig@8.3.6: + resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true + + create-require@1.1.1: + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + + cross-env@7.0.3: + resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==} + engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'} + hasBin: true + + cross-spawn@6.0.6: + resolution: {integrity: sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==} + engines: {node: '>=4.8'} + + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} + + crypto-js@4.2.0: + resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==} + + css-tree@3.1.0: + resolution: {integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + + csscolorparser@1.0.3: + resolution: {integrity: sha512-umPSgYwZkdFoUrH5hIq5kf0wPSXiro51nPw0j2K/c83KflkPSTBGMz6NJvMB+07VlL0y7VPo6QJcDjcgKTTm3w==} + + cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + + cssstyle@3.0.0: + resolution: {integrity: sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==} + engines: {node: '>=14'} + + cssstyle@4.1.0: + resolution: {integrity: sha512-h66W1URKpBS5YMI/V8PyXvTMFT8SupJ1IzoIV8IeBC/ji8WVmrO8dGlTi+2dh6whmdk6BiKJLD/ZBkhWbcg6nA==} + engines: {node: '>=18'} + + csstype@3.1.3: + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + + d3-array@1.2.4: + resolution: {integrity: sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==} + + d3-array@2.12.1: + resolution: {integrity: sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==} + + d3-collection@1.0.7: + resolution: {integrity: sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A==} + + d3-color@1.4.1: + resolution: {integrity: sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q==} + + d3-color@3.1.0: + resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} + engines: {node: '>=12'} + + d3-dsv@1.2.0: + resolution: {integrity: sha512-9yVlqvZcSOMhCYzniHE7EVUws7Fa1zgw+/EAV2BxJoG3ME19V6BQFBwI855XQDsxyOuG7NibqRMTtiF/Qup46g==} + hasBin: true + + d3-ease@1.0.7: + resolution: {integrity: sha512-lx14ZPYkhNx0s/2HX5sLFUI3mbasHjSSpwO/KaaNACweVwxUruKyWVcb293wMv1RqTPZyZ8kSZ2NogUZNcLOFQ==} + + d3-format@1.4.5: + resolution: {integrity: sha512-J0piedu6Z8iB6TbIGfZgDzfXxUFN3qQRMofy2oPdXzQibYGqPB/9iMcxr/TGalU+2RsyDO+U4f33id8tbnSRMQ==} + + d3-hexbin@0.2.2: + resolution: {integrity: sha512-KS3fUT2ReD4RlGCjvCEm1RgMtp2NFZumdMu4DBzQK8AZv3fXRM6Xm8I4fSU07UXvH4xxg03NwWKWdvxfS/yc4w==} + + d3-hierarchy@2.0.0: + resolution: {integrity: sha512-SwIdqM3HxQX2214EG9GTjgmCc/mbSx4mQBn+DuEETubhOw6/U3fmnji4uCVrmzOydMHSO1nZle5gh6HB/wdOzw==} + + d3-interpolate@1.4.0: + resolution: {integrity: sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA==} + + d3-interpolate@3.0.1: + resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} + engines: {node: '>=12'} + + d3-regression@1.3.10: + resolution: {integrity: sha512-PF8GWEL70cHHWpx2jUQXc68r1pyPHIA+St16muk/XRokETzlegj5LriNKg7o4LR0TySug4nHYPJNNRz/W+/Niw==} + + d3-scale@2.2.2: + resolution: {integrity: sha512-LbeEvGgIb8UMcAa0EATLNX0lelKWGYDQiPdHj+gLblGVhGLyNbaCn3EvrJf0A3Y/uOOU5aD6MTh5ZFCdEwGiCw==} + + d3-time-format@2.3.0: + resolution: {integrity: sha512-guv6b2H37s2Uq/GefleCDtbe0XZAuy7Wa49VGkPVPMfLL9qObgBST3lEHJBMUp8S7NdLQAGIvr2KXk8Hc98iKQ==} + + d3-time@1.1.0: + resolution: {integrity: sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA==} + + d3-timer@1.0.10: + resolution: {integrity: sha512-B1JDm0XDaQC+uvo4DT79H0XmBskgS3l6Ve+1SBCfxgmtIb1AVrPIoqd+nPSv+loMX8szQ0sVUhGngL7D5QPiXw==} + + dargs@7.0.0: + resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} + engines: {node: '>=8'} + + data-urls@4.0.0: + resolution: {integrity: sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g==} + engines: {node: '>=14'} + + data-urls@5.0.0: + resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==} + engines: {node: '>=18'} + + data-view-buffer@1.0.2: + resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} + engines: {node: '>= 0.4'} + + data-view-byte-length@1.0.2: + resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} + engines: {node: '>= 0.4'} + + data-view-byte-offset@1.0.1: + resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} + engines: {node: '>= 0.4'} + + dayjs@1.11.18: + resolution: {integrity: sha512-zFBQ7WFRvVRhKcWoUh+ZA1g2HVgUbsZm9sbddh8EC5iv93sui8DVVz1Npvz+r6meo9VKfa8NyLWBsQK1VvIKPA==} + + de-indent@1.0.2: + resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} + + debug@4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.4.0: + resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.4.1: + resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.4.3: + resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decamelize-keys@1.1.1: + resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} + engines: {node: '>=0.10.0'} + + decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + + decimal.js@10.4.3: + resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + + decode-named-character-reference@1.2.0: + resolution: {integrity: sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==} + + deep-eql@5.0.2: + resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} + engines: {node: '>=6'} + + deep-equal@1.1.2: + resolution: {integrity: sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==} + engines: {node: '>= 0.4'} + + deep-extend@0.6.0: + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} + + deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + + default-browser-id@5.0.0: + resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==} + engines: {node: '>=18'} + + default-browser@5.2.1: + resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==} + engines: {node: '>=18'} + + define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} + + define-lazy-prop@3.0.0: + resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} + engines: {node: '>=12'} + + define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + + defined@1.0.1: + resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==} + + defu@6.1.4: + resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} + + delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + + dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + + destr@2.0.3: + resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==} + + detect-browser@5.3.0: + resolution: {integrity: sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==} + + detect-libc@2.0.4: + resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==} + engines: {node: '>=8'} + + devlop@1.1.0: + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + + diff@4.0.2: + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} + engines: {node: '>=0.3.1'} + + diff@8.0.2: + resolution: {integrity: sha512-sSuxWU5j5SR9QQji/o2qMvqRNYRDOcBTgsJ/DeCf4iSN4gW+gNMXM7wFIP+fdXZxoNiAnHUTGjCr+TSWXdRDKg==} + engines: {node: '>=0.3.1'} + + directory-tree@3.5.2: + resolution: {integrity: sha512-DsOqeZEHkZnZrVOJG3mE/J9M6J8PulImiC6I1ZpoprVlfno8GvLOPDMkxiJihklLK7B9aVudG463L1+S/kzjiw==} + engines: {node: '>=10.0'} + hasBin: true + + dom-align@1.12.4: + resolution: {integrity: sha512-R8LUSEay/68zE5c8/3BDxiTEvgb4xZTF0RKmAHfiEVN3klfIpXfi2/QCoiWPccVQ0J/ZGdz9OjzL4uJEP/MRAw==} + + dom-scroll-into-view@2.0.1: + resolution: {integrity: sha512-bvVTQe1lfaUr1oFzZX80ce9KLDlZ3iU+XGNE/bz9HnGdklTieqsbmsLHe+rT2XWqopvL0PckkYqN7ksmm5pe3w==} + + domexception@4.0.0: + resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} + engines: {node: '>=12'} + deprecated: Use your platform's native DOMException instead + + dot-prop@5.3.0: + resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} + engines: {node: '>=8'} + + dotenv@16.4.7: + resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==} + engines: {node: '>=12'} + + dotignore@0.1.2: + resolution: {integrity: sha512-UGGGWfSauusaVJC+8fgV+NVvBXkCTmVv7sk6nojDZZvuOUNGUy0Zk4UpHQD6EDjS0jpBwcACvH4eofvyzBcRDw==} + hasBin: true + + dts-resolver@2.1.1: + resolution: {integrity: sha512-3BiGFhB6mj5Kv+W2vdJseQUYW+SKVzAFJL6YNP6ursbrwy1fXHRotfHi3xLNxe4wZl/K8qbAFeCDjZLjzqxxRw==} + engines: {node: '>=20.18.0'} + peerDependencies: + oxc-resolver: '>=11.0.0' + peerDependenciesMeta: + oxc-resolver: + optional: true + + dunder-proto@1.0.1: + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} + engines: {node: '>= 0.4'} + + duplexer2@0.1.4: + resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==} + + duplexer@0.1.2: + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + + earcut@2.2.4: + resolution: {integrity: sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==} + + eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + + echarts@6.0.0: + resolution: {integrity: sha512-Tte/grDQRiETQP4xz3iZWSvoHrkCQtwqd6hs+mifXcjrCuo2iKWbajFObuLJVBlDIJlOzgQPd1hsaKt/3+OMkQ==} + + editorconfig@1.0.4: + resolution: {integrity: sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==} + engines: {node: '>=14'} + hasBin: true + + electron-to-chromium@1.5.223: + resolution: {integrity: sha512-qKm55ic6nbEmagFlTFczML33rF90aU+WtrJ9MdTCThrcvDNdUHN4p6QfVN78U06ZmguqXIyMPyYhw2TrbDUwPQ==} + + electron-to-chromium@1.5.76: + resolution: {integrity: sha512-CjVQyG7n7Sr+eBXE86HIulnL5N8xZY1sgmOPGuq/F0Rr0FJq63lg0kEtOIDfZBk44FnDLf6FUJ+dsJcuiUDdDQ==} + + element-resize-detector@1.2.4: + resolution: {integrity: sha512-Fl5Ftk6WwXE0wqCgNoseKWndjzZlDCwuPTcoVZfCP9R3EHQF8qUtr3YUPNETegRBOKqQKPW3n4kiIWngGi8tKg==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + + empathic@2.0.0: + resolution: {integrity: sha512-i6UzDscO/XfAcNYD75CfICkmfLedpyPDdozrLMmQc5ORaQcdMoc21OnlEylMIqI7U8eniKrPMxxtj8k0vhmJhA==} + engines: {node: '>=14'} + + enhanced-resolve@5.18.0: + resolution: {integrity: sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==} + engines: {node: '>=10.13.0'} + + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + errno@0.1.8: + resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} + hasBin: true + + error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + + es-abstract@1.23.8: + resolution: {integrity: sha512-lfab8IzDn6EpI1ibZakcgS6WsfEBiB+43cuJo+wgylx1xKXf+Sp+YR3vFuQwC/u3sxYwV8Cxe3B0DpVUu/WiJQ==} + engines: {node: '>= 0.4'} + + es-define-property@1.0.1: + resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} + engines: {node: '>= 0.4'} + + es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + es-module-lexer@1.7.0: + resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} + + es-object-atoms@1.0.0: + resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} + engines: {node: '>= 0.4'} + + es-set-tostringtag@2.0.3: + resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} + engines: {node: '>= 0.4'} + + es-set-tostringtag@2.1.0: + resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} + engines: {node: '>= 0.4'} + + es-to-primitive@1.3.0: + resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} + engines: {node: '>= 0.4'} + + esbuild@0.18.20: + resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} + engines: {node: '>=12'} + hasBin: true + + esbuild@0.25.10: + resolution: {integrity: sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==} + engines: {node: '>=18'} + hasBin: true + + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + + escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + + escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + escape-string-regexp@5.0.0: + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} + + eslint-compat-utils@0.5.1: + resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} + engines: {node: '>=12'} + peerDependencies: + eslint: '>=6.0.0' + + eslint-compat-utils@0.6.4: + resolution: {integrity: sha512-/u+GQt8NMfXO8w17QendT4gvO5acfxQsAKirAt0LVxDnr2N8YLCVbregaNc/Yhp7NM128DwCaRvr8PLDfeNkQw==} + engines: {node: '>=12'} + peerDependencies: + eslint: '>=6.0.0' + + eslint-config-flat-gitignore@2.1.0: + resolution: {integrity: sha512-cJzNJ7L+psWp5mXM7jBX+fjHtBvvh06RBlcweMhKD8jWqQw0G78hOW5tpVALGHGFPsBV+ot2H+pdDGJy6CV8pA==} + peerDependencies: + eslint: ^9.5.0 + + eslint-flat-config-utils@2.1.4: + resolution: {integrity: sha512-bEnmU5gqzS+4O+id9vrbP43vByjF+8KOs+QuuV4OlqAuXmnRW2zfI/Rza1fQvdihQ5h4DUo0NqFAiViD4mSrzQ==} + + eslint-formatting-reporter@0.0.0: + resolution: {integrity: sha512-k9RdyTqxqN/wNYVaTk/ds5B5rA8lgoAmvceYN7bcZMBwU7TuXx5ntewJv81eF3pIL/CiJE+pJZm36llG8yhyyw==} + peerDependencies: + eslint: '>=8.40.0' + + eslint-json-compat-utils@0.2.1: + resolution: {integrity: sha512-YzEodbDyW8DX8bImKhAcCeu/L31Dd/70Bidx2Qex9OFUtgzXLqtfWL4Hr5fM/aCCB8QUZLuJur0S9k6UfgFkfg==} + engines: {node: '>=12'} + peerDependencies: + '@eslint/json': '*' + eslint: '*' + jsonc-eslint-parser: ^2.4.0 + peerDependenciesMeta: + '@eslint/json': + optional: true + + eslint-merge-processors@2.0.0: + resolution: {integrity: sha512-sUuhSf3IrJdGooquEUB5TNpGNpBoQccbnaLHsb1XkBLUPPqCNivCpY05ZcpCOiV9uHwO2yxXEWVczVclzMxYlA==} + peerDependencies: + eslint: '*' + + eslint-parser-plain@0.1.1: + resolution: {integrity: sha512-KRgd6wuxH4U8kczqPp+Oyk4irThIhHWxgFgLDtpgjUGVIS3wGrJntvZW/p6hHq1T4FOwnOtCNkvAI4Kr+mQ/Hw==} + + eslint-plugin-antfu@3.1.1: + resolution: {integrity: sha512-7Q+NhwLfHJFvopI2HBZbSxWXngTwBLKxW1AGXLr2lEGxcEIK/AsDs8pn8fvIizl5aZjBbVbVK5ujmMpBe4Tvdg==} + peerDependencies: + eslint: '*' + + eslint-plugin-command@3.3.1: + resolution: {integrity: sha512-fBVTXQ2y48TVLT0+4A6PFINp7GcdIailHAXbvPBixE7x+YpYnNQhFZxTdvnb+aWk+COgNebQKen/7m4dmgyWAw==} + peerDependencies: + eslint: '*' + + eslint-plugin-es-x@7.8.0: + resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + eslint: '>=8' + + eslint-plugin-format@1.0.2: + resolution: {integrity: sha512-ySrDaLQZbreNAr/Betq6ocd5Hxy3+LBIfWNV2621EQQ6yGf/ZSLtN2MiM62WO2YQTX+nSFhv332Tpp51q+AkZQ==} + peerDependencies: + eslint: ^8.40.0 || ^9.0.0 + + eslint-plugin-import-lite@0.3.0: + resolution: {integrity: sha512-dkNBAL6jcoCsXZsQ/Tt2yXmMDoNt5NaBh/U7yvccjiK8cai6Ay+MK77bMykmqQA2bTF6lngaLCDij6MTO3KkvA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: '>=9.0.0' + typescript: '>=4.5' + peerDependenciesMeta: + typescript: + optional: true + + eslint-plugin-jsdoc@59.1.0: + resolution: {integrity: sha512-sg9mzjjzfnMynyY4W8FDiQv3i8eFcKVEHDt4Xh7MLskP3QkMt2z6p7FuzSw7jJSKFues6RaK2GWvmkB1FLPxXg==} + engines: {node: '>=20.11.0'} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 + + eslint-plugin-jsonc@2.20.1: + resolution: {integrity: sha512-gUzIwQHXx7ZPypUoadcyRi4WbHW2TPixDr0kqQ4miuJBU0emJmyGTlnaT3Og9X2a8R1CDayN9BFSq5weGWbTng==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '>=6.0.0' + + eslint-plugin-n@17.23.1: + resolution: {integrity: sha512-68PealUpYoHOBh332JLLD9Sj7OQUDkFpmcfqt8R9sySfFSeuGJjMTJQvCRRB96zO3A/PELRLkPrzsHmzEFQQ5A==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: '>=8.23.0' + + eslint-plugin-no-only-tests@3.3.0: + resolution: {integrity: sha512-brcKcxGnISN2CcVhXJ/kEQlNa0MEfGRtwKtWA16SkqXHKitaKIMrfemJKLKX1YqDU5C/5JY3PvZXd5jEW04e0Q==} + engines: {node: '>=5.0.0'} + + eslint-plugin-perfectionist@4.15.0: + resolution: {integrity: sha512-pC7PgoXyDnEXe14xvRUhBII8A3zRgggKqJFx2a82fjrItDs1BSI7zdZnQtM2yQvcyod6/ujmzb7ejKPx8lZTnw==} + engines: {node: ^18.0.0 || >=20.0.0} + peerDependencies: + eslint: '>=8.45.0' + + eslint-plugin-pnpm@1.1.2: + resolution: {integrity: sha512-WHH09rEiRZ3fjQ8y9LMarCp3uWOTGkbTyC8WCGqyjMVFUwSFjzIeays8ysvqyz7G5vyjr/72Mzq93Kgtp52BOQ==} + peerDependencies: + eslint: ^9.0.0 + + eslint-plugin-regexp@2.10.0: + resolution: {integrity: sha512-ovzQT8ESVn5oOe5a7gIDPD5v9bCSjIFJu57sVPDqgPRXicQzOnYfFN21WoQBQF18vrhT5o7UMKFwJQVVjyJ0ng==} + engines: {node: ^18 || >=20} + peerDependencies: + eslint: '>=8.44.0' + + eslint-plugin-toml@0.12.0: + resolution: {integrity: sha512-+/wVObA9DVhwZB1nG83D2OAQRrcQZXy+drqUnFJKymqnmbnbfg/UPmEMCKrJNcEboUGxUjYrJlgy+/Y930mURQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '>=6.0.0' + + eslint-plugin-unicorn@61.0.2: + resolution: {integrity: sha512-zLihukvneYT7f74GNbVJXfWIiNQmkc/a9vYBTE4qPkQZswolWNdu+Wsp9sIXno1JOzdn6OUwLPd19ekXVkahRA==} + engines: {node: ^20.10.0 || >=21.0.0} + peerDependencies: + eslint: '>=9.29.0' + + eslint-plugin-unused-imports@4.2.0: + resolution: {integrity: sha512-hLbJ2/wnjKq4kGA9AUaExVFIbNzyxYdVo49QZmKCnhk5pc9wcYRbfgLHvWJ8tnsdcseGhoUAddm9gn/lt+d74w==} + peerDependencies: + '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0 + eslint: ^9.0.0 || ^8.0.0 + peerDependenciesMeta: + '@typescript-eslint/eslint-plugin': + optional: true + + eslint-plugin-vue@10.5.0: + resolution: {integrity: sha512-7BZHsG3kC2vei8F2W8hnfDi9RK+cv5eKPMvzBdrl8Vuc0hR5odGQRli8VVzUkrmUHkxFEm4Iio1r5HOKslO0Aw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@stylistic/eslint-plugin': ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 + '@typescript-eslint/parser': ^7.0.0 || ^8.0.0 + eslint: ^8.57.0 || ^9.0.0 + vue-eslint-parser: ^10.0.0 + peerDependenciesMeta: + '@stylistic/eslint-plugin': + optional: true + '@typescript-eslint/parser': + optional: true + + eslint-plugin-yml@1.18.0: + resolution: {integrity: sha512-9NtbhHRN2NJa/s3uHchO3qVVZw0vyOIvWlXWGaKCr/6l3Go62wsvJK5byiI6ZoYztDsow4GnS69BZD3GnqH3hA==} + engines: {node: ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '>=6.0.0' + + eslint-processor-vue-blocks@2.0.0: + resolution: {integrity: sha512-u4W0CJwGoWY3bjXAuFpc/b6eK3NQEI8MoeW7ritKj3G3z/WtHrKjkqf+wk8mPEy5rlMGS+k6AZYOw2XBoN/02Q==} + peerDependencies: + '@vue/compiler-sfc': ^3.3.0 + eslint: '>=9.0.0' + + eslint-scope@8.4.0: + resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-visitor-keys@4.2.1: + resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint@9.36.0: + resolution: {integrity: sha512-hB4FIzXovouYzwzECDcUkJ4OcfOEkXTv2zRY6B9bkwjx/cprAq0uvm1nl7zvQ0/TsUk0zQiN4uPfJpB9m+rPMQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true + + esno@0.17.0: + resolution: {integrity: sha512-w78cQGlptQfsBYfootUCitsKS+MD74uR5L6kNsvwVkJsfzEepIafbvWsx2xK4rcFP4IUftt4F6J8EhagUxX+Bg==} + hasBin: true + + espree@10.4.0: + resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + espree@9.6.1: + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + esquery@1.6.0: + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} + engines: {node: '>=0.10'} + + esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + + estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + + estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + + esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + + eventemitter3@4.0.7: + resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + + eventemitter3@5.0.1: + resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} + + execa@5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} + + execa@7.2.0: + resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==} + engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} + + execa@8.0.1: + resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} + engines: {node: '>=16.17'} + + expect-type@1.2.2: + resolution: {integrity: sha512-JhFGDVJ7tmDJItKhYgJCGLOWjuK9vPxiXoUFLwLDc99NlmklilbiQJwoctZtt13+xMw91MCk/REan6MWHqDjyA==} + engines: {node: '>=12.0.0'} + + exsolve@1.0.7: + resolution: {integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==} + + extend-shallow@2.0.1: + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} + + extend-shallow@3.0.2: + resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} + engines: {node: '>=0.10.0'} + + extrude-polyline@1.0.6: + resolution: {integrity: sha512-fcKIanU/v+tcdgG0+xMbS0C2VZ0/CF3qqxSjHiWfWICh0yFBezPr3SsOhgdzwE5E82plG6p1orEsfSqgldpxVg==} + + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fast-diff@1.3.0: + resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} + + fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} + + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + + fast-uri@3.0.3: + resolution: {integrity: sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==} + + fastq@1.18.0: + resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==} + + fault@2.0.1: + resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==} + + fdir@6.5.0: + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} + engines: {node: '>=12.0.0'} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + + fecha@4.2.3: + resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==} + + fetchdts@0.1.6: + resolution: {integrity: sha512-yR7rc9v+7KOEnSU5sOJfH9OaxhWRfrrk3am1CUliTCy6Bc+JQtGcxFT9MxvmbU34wA8HYkCk5r9lVRAld8IAcQ==} + + fflate@0.8.2: + resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==} + + file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + find-replace@3.0.0: + resolution: {integrity: sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==} + engines: {node: '>=4.0.0'} + + find-root@1.1.0: + resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} + + find-up-simple@1.0.1: + resolution: {integrity: sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ==} + engines: {node: '>=18'} + + find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + + find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + + flat-cache@4.0.1: + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} + + flatted@3.3.2: + resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} + + fmin@0.0.2: + resolution: {integrity: sha512-sSi6DzInhl9d8yqssDfGZejChO8d2bAGIpysPsvYsxFe898z89XhCZg6CPNV3nhUhFefeC/AXZK2bAJxlBjN6A==} + + follow-redirects@1.15.9: + resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + + for-each@0.3.3: + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + + foreground-child@3.3.0: + resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} + engines: {node: '>=14'} + + form-data@4.0.1: + resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==} + engines: {node: '>= 6'} + + form-data@4.0.4: + resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==} + engines: {node: '>= 6'} + + format@0.2.2: + resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} + engines: {node: '>=0.4.x'} + + fs-extra@11.3.2: + resolution: {integrity: sha512-Xr9F6z6up6Ws+NjzMCZc6WXg2YFRlrLP9NQDO3VQrWrfiojdhS56TzueT88ze0uBdCTwEIhQ3ptnmKeWGFAe0A==} + engines: {node: '>=14.14'} + + fs-minipass@2.1.0: + resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} + engines: {node: '>= 8'} + + fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + function.prototype.name@1.1.8: + resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} + engines: {node: '>= 0.4'} + + functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + + gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + + geojson-vt@3.2.1: + resolution: {integrity: sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg==} + + get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + + get-intrinsic@1.2.6: + resolution: {integrity: sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==} + engines: {node: '>= 0.4'} + + get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + + get-stream@8.0.1: + resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} + engines: {node: '>=16'} + + get-symbol-description@1.1.0: + resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} + engines: {node: '>= 0.4'} + + get-tsconfig@4.10.1: + resolution: {integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==} + + get-tsconfig@4.8.1: + resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} + + get-value@2.0.6: + resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} + engines: {node: '>=0.10.0'} + + giget@1.2.3: + resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==} + hasBin: true + + git-raw-commits@2.0.11: + resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} + engines: {node: '>=10'} + hasBin: true + + github-slugger@2.0.0: + resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} + + gl-matrix@3.4.3: + resolution: {integrity: sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA==} + + gl-vec2@1.3.0: + resolution: {integrity: sha512-YiqaAuNsheWmUV0Sa8k94kBB0D6RWjwZztyO+trEYS8KzJ6OQB/4686gdrf59wld4hHFIvaxynO3nRxpk1Ij/A==} + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + + glob@10.4.5: + resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} + hasBin: true + + glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + deprecated: Glob versions prior to v9 are no longer supported + + global-dirs@0.1.1: + resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==} + engines: {node: '>=4'} + + global-prefix@3.0.0: + resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==} + engines: {node: '>=6'} + + globals@11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} + + globals@14.0.0: + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} + engines: {node: '>=18'} + + globals@15.15.0: + resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==} + engines: {node: '>=18'} + + globals@16.4.0: + resolution: {integrity: sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==} + engines: {node: '>=18'} + + globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + engines: {node: '>= 0.4'} + + globrex@0.1.2: + resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} + + gopd@1.2.0: + resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} + engines: {node: '>= 0.4'} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + + grid-index@1.1.0: + resolution: {integrity: sha512-HZRwumpOGUrHyxO5bqKZL0B0GlUpwtCAzZ42sgxUPniu33R1LSFH5yrIcBCHjkctCAh3mtWKcKd9J4vDDdeVHA==} + + gzip-size@6.0.0: + resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} + engines: {node: '>=10'} + + h3@2.0.0-beta.4: + resolution: {integrity: sha512-/JdwHUGuHjbBXAVxQN7T7QeI9cVlhsqMKVNFHebZVs9RoEYH85Ogh9O1DEy/1ZiJkmMwa1gNg6bBcGhc1Itjdg==} + engines: {node: '>=20.11.1'} + peerDependencies: + crossws: ^0.4.1 + peerDependenciesMeta: + crossws: + optional: true + + hammerjs@2.0.8: + resolution: {integrity: sha512-tSQXBXS/MWQOn/RKckawJ61vvsDpCom87JgxiYdGwHdOa0ht0vzUWDlfioofFCRU0L+6NGDt6XzbgoJvZkMeRQ==} + engines: {node: '>=0.8.0'} + + hard-rejection@2.1.0: + resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} + engines: {node: '>=6'} + + has-ansi@2.0.0: + resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} + engines: {node: '>=0.10.0'} + + has-bigints@1.1.0: + resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} + engines: {node: '>= 0.4'} + + has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + + has-proto@1.2.0: + resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} + engines: {node: '>= 0.4'} + + has-symbols@1.1.0: + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} + engines: {node: '>= 0.4'} + + has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} + + has@1.0.4: + resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} + engines: {node: '>= 0.4.0'} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + he@1.2.0: + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + hasBin: true + + hookable@5.5.3: + resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} + + hosted-git-info@2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + + hosted-git-info@4.1.0: + resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} + engines: {node: '>=10'} + + html-encoding-sniffer@3.0.0: + resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} + engines: {node: '>=12'} + + html-encoding-sniffer@4.0.0: + resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==} + engines: {node: '>=18'} + + html-entities@2.5.2: + resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==} + + html-tokenize@2.0.1: + resolution: {integrity: sha512-QY6S+hZ0f5m1WT8WffYN+Hg+xm/w5I8XeUcAq/ZYP5wVC8xbKi4Whhru3FtrAebD5EhBW8rmFzkDI6eCAuFe2w==} + hasBin: true + + http-proxy-agent@5.0.0: + resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} + engines: {node: '>= 6'} + + http-proxy-agent@7.0.2: + resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} + engines: {node: '>= 14'} + + https-proxy-agent@5.0.1: + resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + engines: {node: '>= 6'} + + https-proxy-agent@7.0.6: + resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} + engines: {node: '>= 14'} + + human-signals@2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} + + human-signals@4.3.1: + resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==} + engines: {node: '>=14.18.0'} + + human-signals@5.0.0: + resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} + engines: {node: '>=16.17.0'} + + husky@9.1.7: + resolution: {integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==} + engines: {node: '>=18'} + hasBin: true + + iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + + iconv-lite@0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} + + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + + ignore@7.0.5: + resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==} + engines: {node: '>= 4'} + + image-size@0.5.5: + resolution: {integrity: sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=} + engines: {node: '>=0.10.0'} + hasBin: true + + import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + + indent-string@5.0.0: + resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==} + engines: {node: '>=12'} + + inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + + internal-slot@1.1.0: + resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} + engines: {node: '>= 0.4'} + + internmap@1.0.1: + resolution: {integrity: sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==} + + is-arguments@1.2.0: + resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==} + engines: {node: '>= 0.4'} + + is-array-buffer@3.0.5: + resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} + engines: {node: '>= 0.4'} + + is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + + is-async-function@2.0.0: + resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} + engines: {node: '>= 0.4'} + + is-bigint@1.1.0: + resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} + engines: {node: '>= 0.4'} + + is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + + is-boolean-object@1.2.1: + resolution: {integrity: sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==} + engines: {node: '>= 0.4'} + + is-buffer@1.1.6: + resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} + + is-builtin-module@5.0.0: + resolution: {integrity: sha512-f4RqJKBUe5rQkJ2eJEJBXSticB3hGbN9j0yxxMQFqIW89Jp9WYFtzfTcRlstDKVUTRzSOTLKRfO9vIztenwtxA==} + engines: {node: '>=18.20'} + + is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + + is-core-module@2.16.1: + resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} + engines: {node: '>= 0.4'} + + is-data-view@1.0.2: + resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} + engines: {node: '>= 0.4'} + + is-date-object@1.1.0: + resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} + engines: {node: '>= 0.4'} + + is-docker@3.0.0: + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + hasBin: true + + is-extendable@0.1.1: + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} + + is-extendable@1.0.1: + resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} + engines: {node: '>=0.10.0'} + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-finalizationregistry@1.1.1: + resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} + engines: {node: '>= 0.4'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-fullwidth-code-point@4.0.0: + resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} + engines: {node: '>=12'} + + is-generator-function@1.0.10: + resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} + engines: {node: '>= 0.4'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-inside-container@1.0.0: + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} + engines: {node: '>=14.16'} + hasBin: true + + is-map@2.0.3: + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} + + is-number-object@1.1.1: + resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} + engines: {node: '>= 0.4'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-obj@2.0.0: + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} + + is-plain-obj@1.1.0: + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} + + is-plain-object@2.0.4: + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} + + is-plain-object@3.0.1: + resolution: {integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==} + engines: {node: '>=0.10.0'} + + is-potential-custom-element-name@1.0.1: + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + + is-regex@1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} + + is-regex@1.2.1: + resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} + engines: {node: '>= 0.4'} + + is-set@2.0.3: + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} + + is-shared-array-buffer@1.0.4: + resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} + engines: {node: '>= 0.4'} + + is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + + is-stream@3.0.0: + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + is-string@1.1.1: + resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} + engines: {node: '>= 0.4'} + + is-symbol@1.1.1: + resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} + engines: {node: '>= 0.4'} + + is-text-path@2.0.0: + resolution: {integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==} + engines: {node: '>=8'} + + is-typed-array@1.1.15: + resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} + engines: {node: '>= 0.4'} + + is-weakmap@2.0.2: + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} + + is-weakref@1.1.0: + resolution: {integrity: sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==} + engines: {node: '>= 0.4'} + + is-weakset@2.0.4: + resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} + engines: {node: '>= 0.4'} + + is-what@3.14.1: + resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} + + is-wsl@3.1.0: + resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} + engines: {node: '>=16'} + + isarray@0.0.1: + resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} + + isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + + isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + isobject@3.0.1: + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} + + jackspeak@3.4.3: + resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} + + jiti@1.21.7: + resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==} + hasBin: true + + jiti@2.6.0: + resolution: {integrity: sha512-VXe6RjJkBPj0ohtqaO8vSWP3ZhAKo66fKrFNCll4BTcwljPLz03pCbaNKfzGP5MbrCYcbJ7v0nOYYwUzTEIdXQ==} + hasBin: true + + js-beautify@1.15.1: + resolution: {integrity: sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==} + engines: {node: '>=14'} + hasBin: true + + js-cookie@3.0.5: + resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==} + engines: {node: '>=14'} + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + js-tokens@9.0.1: + resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==} + + js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + + jsbn@1.1.0: + resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} + + jsdoc-type-pratt-parser@4.1.0: + resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==} + engines: {node: '>=12.0.0'} + + jsdoc-type-pratt-parser@5.4.0: + resolution: {integrity: sha512-F9GQ+F1ZU6qvSrZV8fNFpjDNf614YzR2eF6S0+XbDjAcUI28FSoXnYZFjQmb1kFx3rrJb5PnxUH3/Yti6fcM+g==} + engines: {node: '>=12.0.0'} + + jsdom@22.1.0: + resolution: {integrity: sha512-/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw==} + engines: {node: '>=16'} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + + jsdom@24.1.3: + resolution: {integrity: sha512-MyL55p3Ut3cXbeBEG7Hcv0mVM8pp8PBNWxRqchZnSfAiES1v1mRnMeFfaHWIPULpwsYfvO+ZmMZz5tGCnjzDUQ==} + engines: {node: '>=18'} + peerDependencies: + canvas: ^2.11.2 + peerDependenciesMeta: + canvas: + optional: true + + jsesc@3.0.2: + resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} + engines: {node: '>=6'} + hasBin: true + + jsesc@3.1.0: + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} + engines: {node: '>=6'} + hasBin: true + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-parse-better-errors@1.0.2: + resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} + + json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + + json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + + json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + + json-stringify-pretty-compact@3.0.0: + resolution: {integrity: sha512-Rc2suX5meI0S3bfdZuA7JMFBGkJ875ApfVyq2WHELjBiiG22My/l7/8zPpH/CfFVQHuVLd8NLR0nv6vi0BYYKA==} + + json2module@0.0.3: + resolution: {integrity: sha512-qYGxqrRrt4GbB8IEOy1jJGypkNsjWoIMlZt4bAsmUScCA507Hbc2p1JOhBzqn45u3PWafUgH2OnzyNU7udO/GA==} + hasBin: true + + json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + + jsonc-eslint-parser@2.4.0: + resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + jsonc-eslint-parser@2.4.1: + resolution: {integrity: sha512-uuPNLJkKN8NXAlZlQ6kmUF9qO+T6Kyd7oV4+/7yy8Jz6+MZNyhPq8EdLpdfnPVzUC8qSf1b4j1azKaGnFsjmsw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + jsonfile@6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + + jsonparse@1.3.1: + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} + engines: {'0': node >= 0.2.0} + + kdbush@3.0.0: + resolution: {integrity: sha512-hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew==} + + kdbush@4.0.2: + resolution: {integrity: sha512-WbCVYJ27Sz8zi9Q7Q0xHC+05iwkm3Znipc2XTlrnJbsHMYktW4hPhXUE8Ys1engBrvffoSCqbil1JQAa7clRpA==} + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + kind-of@3.2.2: + resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} + engines: {node: '>=0.10.0'} + + kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + + kolorist@1.8.0: + resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==} + + lazy-cache@1.0.4: + resolution: {integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==} + engines: {node: '>=0.10.0'} + + less@4.4.1: + resolution: {integrity: sha512-X9HKyiXPi0f/ed0XhgUlBeFfxrlDP3xR4M7768Zl+WXLUViuL9AOPPJP4nCV0tgRWvTYvpNmN0SFhZOQzy16PA==} + engines: {node: '>=14'} + hasBin: true + + levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + + lightningcss-darwin-arm64@1.30.1: + resolution: {integrity: sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [darwin] + + lightningcss-darwin-x64@1.30.1: + resolution: {integrity: sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [darwin] + + lightningcss-freebsd-x64@1.30.1: + resolution: {integrity: sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [freebsd] + + lightningcss-linux-arm-gnueabihf@1.30.1: + resolution: {integrity: sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==} + engines: {node: '>= 12.0.0'} + cpu: [arm] + os: [linux] + + lightningcss-linux-arm64-gnu@1.30.1: + resolution: {integrity: sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + + lightningcss-linux-arm64-musl@1.30.1: + resolution: {integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + + lightningcss-linux-x64-gnu@1.30.1: + resolution: {integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + + lightningcss-linux-x64-musl@1.30.1: + resolution: {integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + + lightningcss-win32-arm64-msvc@1.30.1: + resolution: {integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [win32] + + lightningcss-win32-x64-msvc@1.30.1: + resolution: {integrity: sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [win32] + + lightningcss@1.30.1: + resolution: {integrity: sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==} + engines: {node: '>= 12.0.0'} + + lilconfig@2.1.0: + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} + + lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + + lint-staged@14.0.1: + resolution: {integrity: sha512-Mw0cL6HXnHN1ag0mN/Dg4g6sr8uf8sn98w2Oc1ECtFto9tvRF7nkXGJRbx8gPlHyoR0pLyBr2lQHbWwmUHe1Sw==} + engines: {node: ^16.14.0 || >=18.0.0} + hasBin: true + + listr2@6.6.1: + resolution: {integrity: sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==} + engines: {node: '>=16.0.0'} + peerDependencies: + enquirer: '>= 2.3.0 < 3' + peerDependenciesMeta: + enquirer: + optional: true + + load-json-file@4.0.0: + resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} + engines: {node: '>=4'} + + local-pkg@1.1.1: + resolution: {integrity: sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg==} + engines: {node: '>=14'} + + local-pkg@1.1.2: + resolution: {integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==} + engines: {node: '>=14'} + + locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + + lodash-es@4.17.21: + resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} + + lodash.camelcase@4.3.0: + resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + + lodash.clonedeep@4.5.0: + resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==} + + lodash.isequal@4.5.0: + resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} + + lodash.isfunction@3.0.9: + resolution: {integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==} + + lodash.isplainobject@4.0.6: + resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + + lodash.kebabcase@4.1.1: + resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==} + + lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + + lodash.mergewith@4.6.2: + resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==} + + lodash.snakecase@4.1.1: + resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} + + lodash.startcase@4.4.0: + resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} + + lodash.uniq@4.5.0: + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + + lodash.upperfirst@4.3.1: + resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==} + + lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + log-update@5.0.1: + resolution: {integrity: sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + longest-streak@3.1.0: + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + + longest@1.0.1: + resolution: {integrity: sha512-k+yt5n3l48JU4k8ftnKG6V7u32wyH2NfKzeMto9F/QRE0amxy/LayxwlvjjkZEIzqR+19IrtFO8p5kB9QaYUFg==} + engines: {node: '>=0.10.0'} + + loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true + + loupe@3.2.0: + resolution: {integrity: sha512-2NCfZcT5VGVNX9mSZIxLRkEAegDGBpuQZBy13desuHeVORmBDyAET4TkJr4SjqQy3A8JDofMN6LpkK8Xcm/dlw==} + + lru-cache@10.4.3: + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + + lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + + lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + + magic-string@0.30.17: + resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} + + magic-string@0.30.19: + resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==} + + magicast@0.3.5: + resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} + + make-dir@2.1.0: + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + engines: {node: '>=6'} + + make-error@1.3.6: + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + + map-obj@1.0.1: + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} + engines: {node: '>=0.10.0'} + + map-obj@4.3.0: + resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} + engines: {node: '>=8'} + + mapbox-gl@1.13.3: + resolution: {integrity: sha512-p8lJFEiqmEQlyv+DQxFAOG/XPWN0Wp7j/Psq93Zywz7qt9CcUKFYDBOoOEKzqe6gudHVJY8/Bhqw6VDpX2lSBg==} + engines: {node: '>=6.4.0'} + + maplibre-gl@3.6.2: + resolution: {integrity: sha512-krg2KFIdOpLPngONDhP6ixCoWl5kbdMINP0moMSJFVX7wX1Clm2M9hlNKXS8vBGlVWwR5R3ZfI6IPrYz7c+aCQ==} + engines: {node: '>=16.14.0', npm: '>=8.1.0'} + + markdown-table@3.0.4: + resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} + + math-intrinsics@1.1.0: + resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} + engines: {node: '>= 0.4'} + + mdast-util-find-and-replace@3.0.2: + resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==} + + mdast-util-from-markdown@2.0.2: + resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} + + mdast-util-frontmatter@2.0.1: + resolution: {integrity: sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==} + + mdast-util-gfm-autolink-literal@2.0.1: + resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} + + mdast-util-gfm-footnote@2.1.0: + resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==} + + mdast-util-gfm-strikethrough@2.0.0: + resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} + + mdast-util-gfm-table@2.0.0: + resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} + + mdast-util-gfm-task-list-item@2.0.0: + resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} + + mdast-util-gfm@3.1.0: + resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==} + + mdast-util-phrasing@4.1.0: + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} + + mdast-util-to-markdown@2.1.2: + resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} + + mdast-util-to-string@4.0.0: + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} + + mdn-data@2.12.2: + resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==} + + memorystream@0.3.1: + resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} + engines: {node: '>= 0.10.0'} + + meow@12.1.1: + resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==} + engines: {node: '>=16.10'} + + meow@8.1.2: + resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} + engines: {node: '>=10'} + + merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + micromark-core-commonmark@2.0.3: + resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} + + micromark-extension-frontmatter@2.0.0: + resolution: {integrity: sha512-C4AkuM3dA58cgZha7zVnuVxBhDsbttIMiytjgsM2XbHAB2faRVaHRle40558FBN+DJcrLNCoqG5mlrpdU4cRtg==} + + micromark-extension-gfm-autolink-literal@2.1.0: + resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} + + micromark-extension-gfm-footnote@2.1.0: + resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} + + micromark-extension-gfm-strikethrough@2.1.0: + resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} + + micromark-extension-gfm-table@2.1.1: + resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==} + + micromark-extension-gfm-tagfilter@2.0.0: + resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} + + micromark-extension-gfm-task-list-item@2.1.0: + resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} + + micromark-extension-gfm@3.0.0: + resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} + + micromark-factory-destination@2.0.1: + resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} + + micromark-factory-label@2.0.1: + resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} + + micromark-factory-space@2.0.1: + resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} + + micromark-factory-title@2.0.1: + resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} + + micromark-factory-whitespace@2.0.1: + resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} + + micromark-util-character@2.1.1: + resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} + + micromark-util-chunked@2.0.1: + resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} + + micromark-util-classify-character@2.0.1: + resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} + + micromark-util-combine-extensions@2.0.1: + resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} + + micromark-util-decode-numeric-character-reference@2.0.2: + resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} + + micromark-util-decode-string@2.0.1: + resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} + + micromark-util-encode@2.0.1: + resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} + + micromark-util-html-tag-name@2.0.1: + resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} + + micromark-util-normalize-identifier@2.0.1: + resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} + + micromark-util-resolve-all@2.0.1: + resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} + + micromark-util-sanitize-uri@2.0.1: + resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} + + micromark-util-subtokenize@2.1.0: + resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==} + + micromark-util-symbol@2.0.1: + resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} + + micromark-util-types@2.0.2: + resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==} + + micromark@4.0.2: + resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==} + + micromatch@4.0.5: + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + + mime@1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true + + mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + + mimic-fn@4.0.0: + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} + engines: {node: '>=12'} + + min-indent@1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimatch@9.0.1: + resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==} + engines: {node: '>=16 || 14 >=14.17'} + + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + + minimist-options@4.1.0: + resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} + engines: {node: '>= 6'} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + minipass@3.3.6: + resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} + engines: {node: '>=8'} + + minipass@5.0.0: + resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} + engines: {node: '>=8'} + + minipass@7.1.2: + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + engines: {node: '>=16 || 14 >=14.17'} + + minizlib@2.1.2: + resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} + engines: {node: '>= 8'} + + mitt@3.0.1: + resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==} + + mkdirp@1.0.4: + resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + engines: {node: '>=10'} + hasBin: true + + mlly@1.7.4: + resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==} + + mlly@1.8.0: + resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==} + + mock-h3@0.0.1-beta.12: + resolution: {integrity: sha512-nvr9+FCFaVSjWNprHroDr99041UqTaH+MKNmjE/fLe7z8oEoRRi9gETNVlvGqxy6oW0RSkOBrAfaZ1ggnjUyug==} + peerDependencies: + h3: '>=2.0.0-beta.3' + vite: '>=5.0.0' + + mock-property@1.0.3: + resolution: {integrity: sha512-2emPTb1reeLLYwHxyVx993iYyCHEiRRO+y8NFXFPL5kl5q14sgTK76cXyEKkeKCHeRw35SfdkUJ10Q1KfHuiIQ==} + engines: {node: '>= 0.4'} + + mri@1.2.0: + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} + + mrmime@2.0.0: + resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} + engines: {node: '>=10'} + + ms@2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + muggle-string@0.4.1: + resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==} + + multipipe@1.0.2: + resolution: {integrity: sha512-6uiC9OvY71vzSGX8lZvSqscE7ft9nPupJ8fMjrCNRAUy2LREUW42UL+V/NTrogr6rFgRydUrCX4ZitfpSNkSCQ==} + + murmurhash-js@1.0.0: + resolution: {integrity: sha512-TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw==} + + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + nanopop@2.4.2: + resolution: {integrity: sha512-NzOgmMQ+elxxHeIha+OG/Pv3Oc3p4RU2aBhwWwAqDpXrdTbtRylbRLQztLy8dMMwfl6pclznBdfUhccEn9ZIzw==} + + natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + + natural-orderby@5.0.0: + resolution: {integrity: sha512-kKHJhxwpR/Okycz4HhQKKlhWe4ASEfPgkSWNmKFHd7+ezuQlxkA5cM3+XkBPvm1gmHen3w53qsYAv+8GwRrBlg==} + engines: {node: '>=18'} + + needle@3.3.1: + resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==} + engines: {node: '>= 4.4.x'} + hasBin: true + + nice-try@1.0.5: + resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} + + node-fetch-native@1.6.4: + resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==} + + node-releases@2.0.19: + resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} + + node-releases@2.0.21: + resolution: {integrity: sha512-5b0pgg78U3hwXkCM8Z9b2FJdPZlr9Psr9V2gQPESdGHqbntyFJKFW4r5TeWGFzafGY3hzs1JC62VEQMbl1JFkw==} + + nopt@7.2.1: + resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + hasBin: true + + normalize-package-data@2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + + normalize-package-data@3.0.3: + resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} + engines: {node: '>=10'} + + normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + npm-run-all@4.1.5: + resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==} + engines: {node: '>= 4'} + hasBin: true + + npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + + npm-run-path@5.3.0: + resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + + nwsapi@2.2.16: + resolution: {integrity: sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ==} + + nypm@0.3.12: + resolution: {integrity: sha512-D3pzNDWIvgA+7IORhD/IuWzEk4uXv6GsgOxiid4UU3h9oq5IqV1KtPDi63n4sZJ/xcWlr88c0QM2RgN5VbOhFA==} + engines: {node: ^14.16.0 || >=16.10.0} + hasBin: true + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + object-deep-merge@1.0.5: + resolution: {integrity: sha512-3DioFgOzetbxbeUq8pB2NunXo8V0n4EvqsWM/cJoI6IA9zghd7cl/2pBOuWRf4dlvA+fcg5ugFMZaN2/RuoaGg==} + + object-inspect@1.12.3: + resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} + + object-inspect@1.13.3: + resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==} + engines: {node: '>= 0.4'} + + object-is@1.1.6: + resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} + engines: {node: '>= 0.4'} + + object-keys@0.4.0: + resolution: {integrity: sha512-ncrLw+X55z7bkl5PnUvHwFK9FcGuFYo9gtjws2XtSzL+aZ8tm830P60WJ0dSmFVaSalWieW5MD7kEdnXda9yJw==} + + object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + + object.assign@4.1.7: + resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} + engines: {node: '>= 0.4'} + + ofetch@1.4.1: + resolution: {integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==} + + ohash@1.1.4: + resolution: {integrity: sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + + onetime@6.0.0: + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} + engines: {node: '>=12'} + + open@10.1.0: + resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==} + engines: {node: '>=18'} + + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} + + own-keys@1.0.1: + resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} + engines: {node: '>= 0.4'} + + p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + + p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + + p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + + p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + + p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + + package-json-from-dist@1.0.1: + resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} + + package-manager-detector@1.3.0: + resolution: {integrity: sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==} + + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + parse-gitignore@2.0.0: + resolution: {integrity: sha512-RmVuCHWsfu0QPNW+mraxh/xjQVw/lhUCUru8Zni3Ctq3AoMhpDTq0OVdKS6iesd6Kqb7viCV3isAL43dciOSog==} + engines: {node: '>=14'} + + parse-imports-exports@0.2.4: + resolution: {integrity: sha512-4s6vd6dx1AotCx/RCI2m7t7GCh5bDRUtGNvRfHSP2wbBQdMi67pPe7mtzmgwcaQ8VKK/6IB7Glfyu3qdZJPybQ==} + + parse-json@4.0.0: + resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} + engines: {node: '>=4'} + + parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + + parse-node-version@1.0.1: + resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==} + engines: {node: '>= 0.10'} + + parse-statements@1.0.11: + resolution: {integrity: sha512-HlsyYdMBnbPQ9Jr/VgJ1YF4scnldvJpJxCVx6KgqPL4dxppsWrJHCIIxQXMJrqGnsRkNPATbeMJ8Yxu7JMsYcA==} + + parse5@7.2.1: + resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==} + + path-browserify@1.0.1: + resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} + + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + + path-key@2.0.1: + resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} + engines: {node: '>=4'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-key@4.0.0: + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} + + path-type@3.0.0: + resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} + engines: {node: '>=4'} + + path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + + pathe@1.1.2: + resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} + + pathe@2.0.3: + resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} + + pathval@2.0.1: + resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==} + engines: {node: '>= 14.16'} + + pbf@3.3.0: + resolution: {integrity: sha512-XDF38WCH3z5OV/OVa8GKUNtLAyneuzbCisx7QUCF8Q6Nutx0WnJrQe5O+kOtBlLfRNUws98Y58Lblp+NJG5T4Q==} + hasBin: true + + pdfast@0.2.0: + resolution: {integrity: sha512-cq6TTu6qKSFUHwEahi68k/kqN2mfepjkGrG9Un70cgdRRKLKY6Rf8P8uvP2NvZktaQZNF3YE7agEkLj0vGK9bA==} + + perfect-debounce@1.0.0: + resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + picomatch@4.0.2: + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + engines: {node: '>=12'} + + picomatch@4.0.3: + resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} + engines: {node: '>=12'} + + pidtree@0.3.1: + resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==} + engines: {node: '>=0.10'} + hasBin: true + + pidtree@0.6.0: + resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} + engines: {node: '>=0.10'} + hasBin: true + + pify@3.0.0: + resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} + engines: {node: '>=4'} + + pify@4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + + pinia@2.3.1: + resolution: {integrity: sha512-khUlZSwt9xXCaTbbxFYBKDc/bWAGWJjOgvxETwkTN7KRm66EeT1ZdZj6i2ceh9sP2Pzqsbc704r2yngBrxBVug==} + peerDependencies: + typescript: '>=4.4.4' + vue: ^2.7.0 || ^3.5.11 + peerDependenciesMeta: + typescript: + optional: true + + pkg-types@1.3.0: + resolution: {integrity: sha512-kS7yWjVFCkIw9hqdJBoMxDdzEngmkr5FXeWZZfQ6GoYacjVnsW6l2CcYW/0ThD0vF4LPJgVYnrg4d0uuhwYQbg==} + + pkg-types@1.3.1: + resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==} + + pkg-types@2.2.0: + resolution: {integrity: sha512-2SM/GZGAEkPp3KWORxQZns4M+WSeXbC2HEvmOIJe3Cmiv6ieAJvdVhDldtHqM5J1Y7MrR1XhkBT/rMlhh9FdqQ==} + + pkg-types@2.3.0: + resolution: {integrity: sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==} + + pluralize@8.0.0: + resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} + engines: {node: '>=4'} + + pmtiles@2.11.0: + resolution: {integrity: sha512-dU9SzzaqmCGpdEuTnIba6bDHT6j09ZJFIXxwGpvkiEnce3ZnBB1VKt6+EOmJGueriweaZLAMTUmKVElU2CBe0g==} + + pnpm-workspace-yaml@1.1.2: + resolution: {integrity: sha512-XgS7j21a+I0dSmUzDUtKp4TAqPfLwJ0kAg0uQ2dveJxFrY14/9ukaD+Mt+4jt67RH4wgRsvNsjNdKbb/7NrMwQ==} + + polygon-clipping@0.15.7: + resolution: {integrity: sha512-nhfdr83ECBg6xtqOAJab1tbksbBAOMUltN60bU+llHVOL0e5Onm1WpAXXWXVB39L8AJFssoIhEVuy/S90MmotA==} + + polyline-miter-util@1.0.1: + resolution: {integrity: sha512-/3u91zz6mBerBZo6qnOJOTjv7EfPhKtsV028jMyj86YpzLRNmCCFfrX7IO9tCEQ2W4x45yc+vKOezjf7u2Nd6Q==} + + possible-typed-array-names@1.0.0: + resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} + engines: {node: '>= 0.4'} + + postcss-selector-parser@6.1.2: + resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} + engines: {node: '>=4'} + + postcss@8.5.6: + resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} + engines: {node: ^10 || ^12 || >=14} + + potpack@1.0.2: + resolution: {integrity: sha512-choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ==} + + potpack@2.0.0: + resolution: {integrity: sha512-Q+/tYsFU9r7xoOJ+y/ZTtdVQwTWfzjbiXBDMM/JKUux3+QPP02iUuIoeBQ+Ot6oEDlC+/PGjB/5A3K7KKb7hcw==} + + prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + + prettier-linter-helpers@1.0.0: + resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} + engines: {node: '>=6.0.0'} + + prettier@2.8.8: + resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} + engines: {node: '>=10.13.0'} + hasBin: true + + prettier@3.6.2: + resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==} + engines: {node: '>=14'} + hasBin: true + + process-nextick-args@2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + + proto-list@1.2.4: + resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} + + protocol-buffers-schema@3.6.0: + resolution: {integrity: sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==} + + proxy-from-env@1.1.0: + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + + prr@1.0.1: + resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} + + psl@1.15.0: + resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + quansync@0.2.11: + resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==} + + querystringify@2.2.0: + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + quick-lru@4.0.1: + resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} + engines: {node: '>=8'} + + quickselect@2.0.0: + resolution: {integrity: sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==} + + rc9@2.1.2: + resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==} + + read-pkg-up@7.0.1: + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} + + read-pkg@3.0.0: + resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} + engines: {node: '>=4'} + + read-pkg@5.2.0: + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} + + readable-stream@1.0.34: + resolution: {integrity: sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==} + + readable-stream@2.3.8: + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + + readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + + readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + + readdirp@4.0.2: + resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==} + engines: {node: '>= 14.16.0'} + + redent@3.0.0: + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} + + reduce-flatten@2.0.0: + resolution: {integrity: sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==} + engines: {node: '>=6'} + + refa@0.12.1: + resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + reflect.getprototypeof@1.0.9: + resolution: {integrity: sha512-r0Ay04Snci87djAsI4U+WNRcSw5S4pOH7qFjd/veA5gC7TbqESR3tcj28ia95L/fYUDw11JKP7uqUKUAfVvV5Q==} + engines: {node: '>= 0.4'} + + regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + + regexp-ast-analysis@0.7.1: + resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + regexp-tree@0.1.27: + resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==} + hasBin: true + + regexp.prototype.flags@1.5.3: + resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} + engines: {node: '>= 0.4'} + + regjsparser@0.12.0: + resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==} + hasBin: true + + regl@1.6.1: + resolution: {integrity: sha512-7Z9rmpEqmLNwC9kCYCyfyu47eWZaQWeNpwZfwz99QueXN8B/Ow40DB0N+OeUeM/yu9pZAB01+JgJ+XghGveVoA==} + + repeat-string@1.6.1: + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} + engines: {node: '>=0.10'} + + require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + + require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + + requires-port@1.0.0: + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + + resize-observer-polyfill@1.5.1: + resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==} + + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + + resolve-global@1.0.0: + resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==} + engines: {node: '>=8'} + + resolve-pkg-maps@1.0.0: + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + + resolve-protobuf-schema@2.1.0: + resolution: {integrity: sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==} + + resolve@1.22.10: + resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} + engines: {node: '>= 0.4'} + hasBin: true + + restore-cursor@4.0.0: + resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rfdc@1.4.1: + resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} + + right-align@0.1.3: + resolution: {integrity: sha512-yqINtL/G7vs2v+dFIZmFUDbnVyFUJFKd6gK22Kgo6R4jfJGFtisKyncWDDULgjfqf4ASQuIQyjJ7XZ+3aWpsAg==} + engines: {node: '>=0.10.0'} + + robust-predicates@3.0.2: + resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==} + + rolldown-plugin-dts@0.15.6: + resolution: {integrity: sha512-AxQlyx3Nszob5QLmVUjz/VnC5BevtUo0h8tliuE0egddss7IbtCBU7GOe7biRU0fJNRQJmQjPKXFcc7K98j3+w==} + engines: {node: '>=20.18.0'} + peerDependencies: + '@typescript/native-preview': '>=7.0.0-dev.20250601.1' + rolldown: ^1.0.0-beta.9 + typescript: ^5.0.0 + vue-tsc: ~3.0.3 + peerDependenciesMeta: + '@typescript/native-preview': + optional: true + typescript: + optional: true + vue-tsc: + optional: true + + rolldown-vite@7.1.13: + resolution: {integrity: sha512-wYRnqlO+nKcvZitHjwXCnGy+xaFW8mBWL6zScZWJK/ZtEs9Be4ngabaDN05l7t+xFgSzZbPYbWdORBVTfWm7uA==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + peerDependencies: + '@types/node': ^20.19.0 || >=22.12.0 + esbuild: ^0.25.0 + jiti: '>=1.21.0' + less: ^4.0.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + esbuild: + optional: true + jiti: + optional: true + less: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + + rolldown@1.0.0-beta.40: + resolution: {integrity: sha512-VqEHbKpOgTPmQrZ4fVn4eshDQS/6g/fRpNE7cFSJY+eQLDZn4B9X61J6L+hnlt1u2uRI+pF7r1USs6S5fuWCvw==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + + rolldown@1.1.2: + resolution: {integrity: sha512-x0CrQQqCXWGeI8dTvFfN/Dnv3yMKT9hv5jFjlOreKAx9wqLq9wz7VvLLHyaAXC90/CpggTu9SisSbsJJTPSjNQ==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + + rollup@0.25.8: + resolution: {integrity: sha512-a2S4Bh3bgrdO4BhKr2E4nZkjTvrJ2m2bWjMTzVYtoqSCn0HnuxosXnaJUHrMEziOWr3CzL9GjilQQKcyCQpJoA==} + hasBin: true + + rollup@4.46.3: + resolution: {integrity: sha512-RZn2XTjXb8t5g13f5YclGoilU/kwT696DIkY3sywjdZidNSi3+vseaQov7D7BZXVJCPv3pDWUN69C78GGbXsKw==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + rou3@0.7.3: + resolution: {integrity: sha512-KKenF/hB2iIhS1ohj226LT+/8uKCBpSMqeS4V1UPN9vad99uLoyIhrULRRB1skaB40LQHcBlSsAi3sT8MaoDDQ==} + + rrweb-cssom@0.6.0: + resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==} + + rrweb-cssom@0.7.1: + resolution: {integrity: sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==} + + run-applescript@7.0.0: + resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==} + engines: {node: '>=18'} + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + rw@1.3.3: + resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==} + + safe-array-concat@1.1.3: + resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} + engines: {node: '>=0.4'} + + safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safe-push-apply@1.0.0: + resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} + engines: {node: '>= 0.4'} + + safe-regex-test@1.1.0: + resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} + engines: {node: '>= 0.4'} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + sax@1.4.1: + resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} + + saxes@6.0.0: + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} + + scroll-into-view-if-needed@2.2.31: + resolution: {integrity: sha512-dGCXy99wZQivjmjIqihaBQNjryrz5rueJY7eHfTdyWEiR4ttYpsajb14rn9s5d4DY4EcY6+4+U/maARBXJedkA==} + + scslre@0.3.0: + resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==} + engines: {node: ^14.0.0 || >=16.0.0} + + scule@1.3.0: + resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==} + + semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + hasBin: true + + semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + + semver@7.6.0: + resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==} + engines: {node: '>=10'} + hasBin: true + + semver@7.6.3: + resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} + engines: {node: '>=10'} + hasBin: true + + semver@7.7.2: + resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} + engines: {node: '>=10'} + hasBin: true + + set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} + + set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} + + set-value@2.0.1: + resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} + engines: {node: '>=0.10.0'} + + shallow-equal@1.2.1: + resolution: {integrity: sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==} + + shebang-command@1.2.0: + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@1.0.0: + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + shell-quote@1.8.2: + resolution: {integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==} + engines: {node: '>= 0.4'} + + side-channel-list@1.0.0: + resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} + engines: {node: '>= 0.4'} + + side-channel-map@1.0.1: + resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} + engines: {node: '>= 0.4'} + + side-channel-weakmap@1.0.2: + resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} + engines: {node: '>= 0.4'} + + side-channel@1.1.0: + resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} + engines: {node: '>= 0.4'} + + siginfo@2.0.0: + resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} + + signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + + sirv@3.0.1: + resolution: {integrity: sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==} + engines: {node: '>=18'} + + sisteransi@1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + + size-sensor@1.0.2: + resolution: {integrity: sha512-2NCmWxY7A9pYKGXNBfteo4hy14gWu47rg5692peVMst6lQLPKrVjhY+UTEsPI5ceFRJSl3gVgMYaUi/hKuaiKw==} + + sjcl@1.0.9: + resolution: {integrity: sha512-dWM71tkSHxe7zEZj0/COjtJdmErIxp7UMp8a6D4xx8dTTtJLc4lFL+HAX8s6lvASyQQ2iYMHwa7rhhQq7MT5MA==} + + slice-ansi@5.0.0: + resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==} + engines: {node: '>=12'} + + sm-crypto@0.4.0: + resolution: {integrity: sha512-OexH2V1EqmhXuOIPGoCl55OjMF0wwPUM/zhUjT0Q6vHBeopSRvTNRy76/1eRoFs3VBKt39hdFnxwpFmooHYa2A==} + + sort-asc@0.2.0: + resolution: {integrity: sha512-umMGhjPeHAI6YjABoSTrFp2zaBtXBej1a0yKkuMUyjjqu6FJsTF+JYwCswWDg+zJfk/5npWUUbd33HH/WLzpaA==} + engines: {node: '>=0.10.0'} + + sort-desc@0.2.0: + resolution: {integrity: sha512-NqZqyvL4VPW+RAxxXnB8gvE1kyikh8+pR+T+CXLksVRN9eiQqkQlPwqWYU0mF9Jm7UnctShlxLyAt1CaBOTL1w==} + engines: {node: '>=0.10.0'} + + sort-object@3.0.3: + resolution: {integrity: sha512-nK7WOY8jik6zaG9CRwZTaD5O7ETWDLZYMM12pqY8htll+7dYeqGfEUPcUBHOpSJg2vJOrvFIY2Dl5cX2ih1hAQ==} + engines: {node: '>=0.10.0'} + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + source-map-support@0.3.3: + resolution: {integrity: sha512-9O4+y9n64RewmFoKUZ/5Tx9IHIcXM6Q+RTSw6ehnqybUz4a7iwR3Eaw80uLtqqQ5D0C+5H03D4KKGo9PdP33Gg==} + + source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + + source-map@0.1.32: + resolution: {integrity: sha512-htQyLrrRLkQ87Zfrir4/yN+vAUd6DNjVayEjTSHXu29AYQJw57I4/xEL/M6p6E/woPNJwvZt6rVlzc7gFEJccQ==} + engines: {node: '>=0.8.0'} + + source-map@0.5.7: + resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} + engines: {node: '>=0.10.0'} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + spdx-correct@3.2.0: + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + + spdx-exceptions@2.5.0: + resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} + + spdx-expression-parse@3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + + spdx-expression-parse@4.0.0: + resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==} + + spdx-license-ids@3.0.20: + resolution: {integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==} + + splaytree@3.1.2: + resolution: {integrity: sha512-4OM2BJgC5UzrhVnnJA4BkHKGtjXNzzUfpQjCO8I05xYPsfS/VuQDwjCGGMi8rYQilHEV4j8NBqTFbls/PZEE7A==} + + split-string@3.1.0: + resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} + engines: {node: '>=0.10.0'} + + split2@3.2.2: + resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} + + split2@4.2.0: + resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} + engines: {node: '>= 10.x'} + + srvx@0.8.7: + resolution: {integrity: sha512-g3+15LlwVOGL2QpoTPZlvRjg+9a5Tx/69CatXjFP6txvhIaW2FmGyzJfb8yft5wyfGddvJmP/Yx+e/uNDMRSLQ==} + engines: {node: '>=20.16.0'} + hasBin: true + + stackback@0.0.2: + resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} + + std-env@3.8.0: + resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==} + + std-env@3.9.0: + resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==} + + string-argv@0.3.2: + resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} + engines: {node: '>=0.6.19'} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + + string.prototype.padend@3.1.6: + resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==} + engines: {node: '>= 0.4'} + + string.prototype.trim@1.2.10: + resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} + engines: {node: '>= 0.4'} + + string.prototype.trimend@1.0.9: + resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} + engines: {node: '>= 0.4'} + + string.prototype.trimstart@1.0.8: + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} + + string_decoder@0.10.31: + resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} + + string_decoder@1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + + string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + + strip-ansi@3.0.1: + resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} + engines: {node: '>=0.10.0'} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} + + strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + + strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + + strip-final-newline@3.0.0: + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} + engines: {node: '>=12'} + + strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + + strip-indent@4.1.0: + resolution: {integrity: sha512-OA95x+JPmL7kc7zCu+e+TeYxEiaIyndRx0OrBcK2QPPH09oAndr2ALvymxWA+Lx1PYYvFUm4O63pRkdJAaW96w==} + engines: {node: '>=12'} + + strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + + strip-literal@3.0.0: + resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==} + + stylis@4.2.0: + resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} + + stylis@4.3.4: + resolution: {integrity: sha512-osIBl6BGUmSfDkyH2mB7EFvCJntXDrLhKjHTRj/rK6xLH0yuPrHULDRQzKokSOD4VoorhtKpfcfW1GAntu8now==} + + supercluster@7.1.5: + resolution: {integrity: sha512-EulshI3pGUM66o6ZdH3ReiFcvHpM3vAigyK+vcxdjpJyEbIIrtbmBdY23mGgnI24uXiGFvrGq9Gkum/8U7vJWg==} + + supercluster@8.0.1: + resolution: {integrity: sha512-IiOea5kJ9iqzD2t7QJq/cREyLHTtSmUT6gQsweojg9WH2sYJqZK9SswTu6jrscO6D1G5v5vYZ9ru/eq85lXeZQ==} + + supports-color@2.0.0: + resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} + engines: {node: '>=0.8.0'} + + supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + symbol-tree@3.2.4: + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + + synckit@0.6.2: + resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==} + engines: {node: '>=12.20'} + + synckit@0.9.3: + resolution: {integrity: sha512-JJoOEKTfL1urb1mDoEblhD9NhEbWmq9jHEMEnxoC4ujUaZ4itA8vKgwkFAyNClgxplLi9tsUKX+EduK0p/l7sg==} + engines: {node: ^14.18.0 || >=16.0.0} + + table-layout@1.0.2: + resolution: {integrity: sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==} + engines: {node: '>=8.0.0'} + + tapable@2.2.1: + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} + engines: {node: '>=6'} + + tape@4.17.0: + resolution: {integrity: sha512-KCuXjYxCZ3ru40dmND+oCLsXyuA8hoseu2SS404Px5ouyS0A99v8X/mdiLqsR5MTAyamMBN7PRwt2Dv3+xGIxw==} + hasBin: true + + tar@6.2.1: + resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} + engines: {node: '>=10'} + + terser@5.37.0: + resolution: {integrity: sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==} + engines: {node: '>=10'} + hasBin: true + + text-extensions@2.4.0: + resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==} + engines: {node: '>=8'} + + throttle-debounce@5.0.2: + resolution: {integrity: sha512-B71/4oyj61iNH0KeCamLuE2rmKuTO5byTOSVwECM5FA7TiAiAW+UqTKZ9ERueC4qvgSttUhdmq1mXC3kJqGX7A==} + engines: {node: '>=12.22'} + + through2@0.4.2: + resolution: {integrity: sha512-45Llu+EwHKtAZYTPPVn3XZHBgakWMN3rokhEv5hu596XP+cNgplMg+Gj+1nmAvj+L0K7+N49zBKx5rah5u0QIQ==} + + through2@4.0.2: + resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} + + through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + + tinybench@2.9.0: + resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} + + tinyexec@0.3.2: + resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} + + tinyexec@1.0.1: + resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==} + + tinyglobby@0.2.14: + resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} + engines: {node: '>=12.0.0'} + + tinyglobby@0.2.15: + resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} + engines: {node: '>=12.0.0'} + + tinypool@1.1.1: + resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==} + engines: {node: ^18.0.0 || >=20.0.0} + + tinyqueue@2.0.3: + resolution: {integrity: sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==} + + tinyrainbow@2.0.0: + resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==} + engines: {node: '>=14.0.0'} + + tinyspy@4.0.3: + resolution: {integrity: sha512-t2T/WLB2WRgZ9EpE4jgPJ9w+i66UZfDc8wHh0xrwiRNN+UwH98GIJkTeZqX9rg0i0ptwzqW+uYeIF0T4F8LR7A==} + engines: {node: '>=14.0.0'} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + toml-eslint-parser@0.10.0: + resolution: {integrity: sha512-khrZo4buq4qVmsGzS5yQjKe/WsFvV8fGfOjDQN0q4iy9FjRfPWRgTFrU8u1R2iu/SfWLhY9WnCi4Jhdrcbtg+g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + totalist@3.0.1: + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} + engines: {node: '>=6'} + + tough-cookie@4.1.4: + resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} + engines: {node: '>=6'} + + tr46@4.1.1: + resolution: {integrity: sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==} + engines: {node: '>=14'} + + tr46@5.0.0: + resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==} + engines: {node: '>=18'} + + tree-kill@1.2.2: + resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} + hasBin: true + + treeify@1.1.0: + resolution: {integrity: sha512-1m4RA7xVAJrSGrrXGs0L3YTwyvBs2S8PbRHaLZAkFw7JR8oIFwYtysxlBZhYIa7xSyiYJKZ3iGrrk55cGA3i9A==} + engines: {node: '>=0.6'} + + trim-newlines@3.0.1: + resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} + engines: {node: '>=8'} + + ts-api-utils@2.1.0: + resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==} + engines: {node: '>=18.12'} + peerDependencies: + typescript: '>=4.8.4' + + ts-declaration-location@1.0.7: + resolution: {integrity: sha512-EDyGAwH1gO0Ausm9gV6T2nUvBgXT5kGoCMJPllOaooZ+4VvJiKBdZE7wK18N1deEowhcUptS+5GXZK8U/fvpwA==} + peerDependencies: + typescript: '>=4.0.0' + + ts-node@10.9.2: + resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + + tsdown@0.14.1: + resolution: {integrity: sha512-/nBuFDKZeYln9hAxwWG5Cm55/823sNIVI693iVi0xRFHzf9OVUq4b/lx9PH1TErFr/IQ0kd2hutFbJIPM0XQWA==} + engines: {node: '>=20.19.0'} + hasBin: true + peerDependencies: + '@arethetypeswrong/core': ^0.18.1 + publint: ^0.3.0 + typescript: ^5.0.0 + unplugin-lightningcss: ^0.4.0 + unplugin-unused: ^0.5.0 + peerDependenciesMeta: + '@arethetypeswrong/core': + optional: true + publint: + optional: true + typescript: + optional: true + unplugin-lightningcss: + optional: true + unplugin-unused: + optional: true + + tslib@1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + + tslib@2.3.0: + resolution: {integrity: sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==} + + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + + tsx@3.14.0: + resolution: {integrity: sha512-xHtFaKtHxM9LOklMmJdI3BEnQq/D5F73Of2E1GDrITi9sgoVkvIsrQUTY1G8FlmGtA+awCI4EBlTRRYxkL2sRg==} + hasBin: true + + type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + + type-fest@0.18.1: + resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} + engines: {node: '>=10'} + + type-fest@0.6.0: + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} + + type-fest@0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} + + type-fest@1.4.0: + resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} + engines: {node: '>=10'} + + type-fest@4.2.0: + resolution: {integrity: sha512-5zknd7Dss75pMSED270A1RQS3KloqRJA9XbXLe0eCxyw7xXFb3rd+9B0UQ/0E+LQT6lnrLviEolYORlRWamn4w==} + engines: {node: '>=16'} + + typed-array-buffer@1.0.3: + resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} + engines: {node: '>= 0.4'} + + typed-array-byte-length@1.0.3: + resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} + engines: {node: '>= 0.4'} + + typed-array-byte-offset@1.0.4: + resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} + engines: {node: '>= 0.4'} + + typed-array-length@1.0.7: + resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} + engines: {node: '>= 0.4'} + + typescript@5.8.3: + resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==} + engines: {node: '>=14.17'} + hasBin: true + + typewise-core@1.2.0: + resolution: {integrity: sha512-2SCC/WLzj2SbUwzFOzqMCkz5amXLlxtJqDKTICqg30x+2DZxcfZN2MvQZmGfXWKNWaKK9pBPsvkcwv8bF/gxKg==} + + typewise@1.0.3: + resolution: {integrity: sha512-aXofE06xGhaQSPzt8hlTY+/YWQhm9P0jYUp1f2XtmW/3Bk0qzXcyFWAtPoo2uTGQj1ZwbDuSyuxicq+aDo8lCQ==} + + typical@4.0.0: + resolution: {integrity: sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==} + engines: {node: '>=8'} + + typical@5.2.0: + resolution: {integrity: sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==} + engines: {node: '>=8'} + + ufo@1.5.4: + resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==} + + ufo@1.6.1: + resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==} + + uglify-js@2.8.29: + resolution: {integrity: sha512-qLq/4y2pjcU3vhlhseXGGJ7VbFO4pBANu0kwl8VCa9KEI0V8VfZIx2Fy3w01iSTA/pGwKZSmu/+I4etLNDdt5w==} + engines: {node: '>=0.8.0'} + hasBin: true + + uglify-to-browserify@1.0.2: + resolution: {integrity: sha1-bgkk1r2mta/jSeOabWMoUKD4grc=} + + unbox-primitive@1.1.0: + resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} + engines: {node: '>= 0.4'} + + unconfig@7.3.2: + resolution: {integrity: sha512-nqG5NNL2wFVGZ0NA/aCFw0oJ2pxSf1lwg4Z5ill8wd7K4KX/rQbHlwbh+bjctXL5Ly1xtzHenHGOK0b+lG6JVg==} + + unconfig@7.3.3: + resolution: {integrity: sha512-QCkQoOnJF8L107gxfHL0uavn7WD9b3dpBcFX6HtfQYmjw2YzWxGuFQ0N0J6tE9oguCBJn9KOvfqYDCMPHIZrBA==} + + undici-types@6.21.0: + resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} + + unimport@4.2.0: + resolution: {integrity: sha512-mYVtA0nmzrysnYnyb3ALMbByJ+Maosee2+WyE0puXl+Xm2bUwPorPaaeZt0ETfuroPOtG8jj1g/qeFZ6buFnag==} + engines: {node: '>=18.12.0'} + + union-value@1.0.1: + resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} + engines: {node: '>=0.10.0'} + + unist-util-is@6.0.0: + resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} + + unist-util-stringify-position@4.0.0: + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} + + unist-util-visit-parents@6.0.1: + resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} + + unist-util-visit@5.0.0: + resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} + + universalify@0.2.0: + resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} + engines: {node: '>= 4.0.0'} + + universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} + + unocss-preset-chinese@0.3.3: + resolution: {integrity: sha512-t6AZ5HMb2pMwSuBp1ntVViKUwPufLWRELoptkAIQrK53j9CtGU3wGXGcpas8HQXaG5fzSpwmGRJagB+7bz1ZZw==} + peerDependencies: + '@unocss/nuxt': '*' + unocss: '*' + peerDependenciesMeta: + '@unocss/nuxt': + optional: true + unocss: + optional: true + + unocss-preset-ease@0.0.3: + resolution: {integrity: sha512-xSJcLZWeEBmeElddjLgKTY/NHP1ycwxSfSW6ldCG2OWPfa4vNNrRl0eL+kuMWNWzewCKGeQS/XIYI66mmd0R0Q==} + peerDependencies: + '@unocss/nuxt': '*' + unocss: '*' + peerDependenciesMeta: + '@unocss/nuxt': + optional: true + unocss: + optional: true + + unocss@66.5.2: + resolution: {integrity: sha512-GCFq6ilalDE33dbjZKgeBHgKGLL/t87XM5sS0aqhD0RgzHhbT2f6Jtsmmg2Q3GASlk5uvJLxh9ifUvPQ13BdyQ==} + engines: {node: '>=14'} + peerDependencies: + '@unocss/webpack': 66.5.2 + vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0 + peerDependenciesMeta: + '@unocss/webpack': + optional: true + vite: + optional: true + + unplugin-auto-import@19.3.0: + resolution: {integrity: sha512-iIi0u4Gq2uGkAOGqlPJOAMI8vocvjh1clGTfSK4SOrJKrt+tirrixo/FjgBwXQNNdS7ofcr7OxzmOb/RjWxeEQ==} + engines: {node: '>=14'} + peerDependencies: + '@nuxt/kit': ^3.2.2 + '@vueuse/core': '*' + peerDependenciesMeta: + '@nuxt/kit': + optional: true + '@vueuse/core': + optional: true + + unplugin-config@0.1.5: + resolution: {integrity: sha512-AT1BHPx7RqrcX8dQ6jQn3W8PnXNyMXPe57wfs9TNH/vZB9vM7Brbi0fhvApAUbkyuIb2Qkamt6jmn32KzEGcTw==} + peerDependencies: + '@nuxt/kit': ^3 + '@nuxt/schema': ^3 + esbuild: '*' + rollup: ^3 + vite: '>=3' + webpack: ^4 || ^5 + peerDependenciesMeta: + '@nuxt/kit': + optional: true + '@nuxt/schema': + optional: true + esbuild: + optional: true + rollup: + optional: true + vite: + optional: true + webpack: + optional: true + + unplugin-utils@0.2.5: + resolution: {integrity: sha512-gwXJnPRewT4rT7sBi/IvxKTjsms7jX7QIDLOClApuZwR49SXbrB1z2NLUZ+vDHyqCj/n58OzRRqaW+B8OZi8vg==} + engines: {node: '>=18.12.0'} + + unplugin-utils@0.3.0: + resolution: {integrity: sha512-JLoggz+PvLVMJo+jZt97hdIIIZ2yTzGgft9e9q8iMrC4ewufl62ekeW7mixBghonn2gVb/ICjyvlmOCUBnJLQg==} + engines: {node: '>=20.19.0'} + + unplugin-vue-components@29.1.0: + resolution: {integrity: sha512-z/9ACPXth199s9aCTCdKZAhe5QGOpvzJYP+Hkd0GN1/PpAmsu+W3UlRY3BJAewPqQxh5xi56+Og6mfiCV1Jzpg==} + engines: {node: '>=14'} + peerDependencies: + '@babel/parser': ^7.15.8 + '@nuxt/kit': ^3.2.2 || ^4.0.0 + vue: 2 || 3 + peerDependenciesMeta: + '@babel/parser': + optional: true + '@nuxt/kit': + optional: true + + unplugin@1.16.0: + resolution: {integrity: sha512-5liCNPuJW8dqh3+DM6uNM2EI3MLLpCKp/KY+9pB5M2S2SR2qvvDHhKgBOaTWEbZTAws3CXfB0rKTIolWKL05VQ==} + engines: {node: '>=14.0.0'} + + unplugin@2.3.10: + resolution: {integrity: sha512-6NCPkv1ClwH+/BGE9QeoTIl09nuiAt0gS28nn1PvYXsGKRwM2TCbFA2QiilmehPDTXIe684k4rZI1yl3A1PCUw==} + engines: {node: '>=18.12.0'} + + unplugin@2.3.6: + resolution: {integrity: sha512-+/MdXl8bLTXI2lJF22gUBeCFqZruEpL/oM9f8wxCuKh9+Mw9qeul3gTqgbKpMeOFlusCzc0s7x2Kax2xKW+FQg==} + engines: {node: '>=18.12.0'} + + update-browserslist-db@1.1.1: + resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + update-browserslist-db@1.1.3: + resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + + url-parse@1.5.10: + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + v8-compile-cache-lib@3.0.1: + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} + + validate-npm-package-license@3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + + viewport-mercator-project@6.2.3: + resolution: {integrity: sha512-QQb0/qCLlP4DdfbHHSWVYXpghB2wkLIiiZQnoelOB59mXKQSyZVxjreq1S+gaBJFpcGkWEcyVtre0+2y2DTl/Q==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + vite-node@3.2.4: + resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + hasBin: true + + vite@7.1.2: + resolution: {integrity: sha512-J0SQBPlQiEXAF7tajiH+rUooJPo0l8KQgyg4/aMunNtrOa7bwuZJsJbDWzeljqQpgftxuq5yNJxQ91O9ts29UQ==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + peerDependencies: + '@types/node': ^20.19.0 || >=22.12.0 + jiti: '>=1.21.0' + less: ^4.0.0 + lightningcss: ^1.21.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + jiti: + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + + vitest@3.2.4: + resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + hasBin: true + peerDependencies: + '@edge-runtime/vm': '*' + '@types/debug': ^4.1.12 + '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 + '@vitest/browser': 3.2.4 + '@vitest/ui': 3.2.4 + happy-dom: '*' + jsdom: '*' + peerDependenciesMeta: + '@edge-runtime/vm': + optional: true + '@types/debug': + optional: true + '@types/node': + optional: true + '@vitest/browser': + optional: true + '@vitest/ui': + optional: true + happy-dom: + optional: true + jsdom: + optional: true + + vscode-uri@3.0.8: + resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==} + + vt-pbf@3.1.3: + resolution: {integrity: sha512-2LzDFzt0mZKZ9IpVF2r69G9bXaP2Q2sArJCmcCgvfTdCCZzSyz4aCLoQyUilu37Ll56tCblIZrXFIjNUpGIlmA==} + + vue-component-type-helpers@2.2.0: + resolution: {integrity: sha512-cYrAnv2me7bPDcg9kIcGwjJiSB6Qyi08+jLDo9yuvoFQjzHiPTzML7RnkJB1+3P6KMsX/KbCD4QE3Tv/knEllw==} + + vue-demi@0.14.10: + resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==} + engines: {node: '>=12'} + hasBin: true + peerDependencies: + '@vue/composition-api': ^1.0.0-rc.1 + vue: ^3.0.0-0 || ^2.6.0 + peerDependenciesMeta: + '@vue/composition-api': + optional: true + + vue-eslint-parser@10.2.0: + resolution: {integrity: sha512-CydUvFOQKD928UzZhTp4pr2vWz1L+H99t7Pkln2QSPdvmURT0MoC4wUccfCnuEaihNsu9aYYyk+bep8rlfkUXw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + + vue-flow-layout@0.2.0: + resolution: {integrity: sha512-zKgsWWkXq0xrus7H4Mc+uFs1ESrmdTXlO0YNbR6wMdPaFvosL3fMB8N7uTV308UhGy9UvTrGhIY7mVz9eN+L0Q==} + + vue-i18n@9.14.5: + resolution: {integrity: sha512-0jQ9Em3ymWngyiIkj0+c/k7WgaPO+TNzjKSNq9BvBQaKJECqn9cd9fL4tkDhB5G1QBskGl9YxxbDAhgbFtpe2g==} + engines: {node: '>= 16'} + peerDependencies: + vue: ^3.0.0 + + vue-router@4.5.1: + resolution: {integrity: sha512-ogAF3P97NPm8fJsE4by9dwSYtDwXIY1nFY9T6DyQnGHd1E2Da94w9JIolpe42LJGIl0DwOHBi8TcRPlPGwbTtw==} + peerDependencies: + vue: ^3.2.0 + + vue-tsc@3.0.8: + resolution: {integrity: sha512-H9yg/m6ywykmWS+pIAEs65v2FrVm5uOA0a0dHkX6Sx8dNg1a1m4iudt/6eGa9fAenmNHGlLFN9XpWQb8i5sU1w==} + hasBin: true + peerDependencies: + typescript: '>=5.0.0' + + vue-types@3.0.2: + resolution: {integrity: sha512-IwUC0Aq2zwaXqy74h4WCvFCUtoV0iSWr0snWnE9TnU18S66GAQyqQbRf2qfJtUuiFsBf6qp0MEwdonlwznlcrw==} + engines: {node: '>=10.15.0'} + peerDependencies: + vue: ^3.0.0 + + vue@3.5.22: + resolution: {integrity: sha512-toaZjQ3a/G/mYaLSbV+QsQhIdMo9x5rrqIpYRObsJ6T/J+RyCSFwN2LHNVH9v8uIcljDNa3QzPVdv3Y6b9hAJQ==} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + w3c-xmlserializer@4.0.0: + resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} + engines: {node: '>=14'} + + w3c-xmlserializer@5.0.0: + resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==} + engines: {node: '>=18'} + + warning@4.0.3: + resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==} + + web-worker-helper@0.0.3: + resolution: {integrity: sha512-/TllNPjGenDwjE67M16TD9ALwuY847/zIoH7r+e5rSeG4kEa3HiMTAsUDj80yzIzhtshkv215KfsnQ/RXR3nVA==} + + webidl-conversions@7.0.0: + resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + engines: {node: '>=12'} + + webpack-virtual-modules@0.6.2: + resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==} + + whatwg-encoding@2.0.0: + resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} + engines: {node: '>=12'} + + whatwg-encoding@3.1.1: + resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} + engines: {node: '>=18'} + + whatwg-mimetype@3.0.0: + resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} + engines: {node: '>=12'} + + whatwg-mimetype@4.0.0: + resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} + engines: {node: '>=18'} + + whatwg-url@12.0.1: + resolution: {integrity: sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ==} + engines: {node: '>=14'} + + whatwg-url@14.1.0: + resolution: {integrity: sha512-jlf/foYIKywAt3x/XWKZ/3rz8OSJPiWktjmk891alJUEjiVxKX9LEO92qH3hv4aJ0mN3MWPvGMCy8jQi95xK4w==} + engines: {node: '>=18'} + + which-boxed-primitive@1.1.1: + resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} + engines: {node: '>= 0.4'} + + which-builtin-type@1.2.1: + resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} + engines: {node: '>= 0.4'} + + which-collection@1.0.2: + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} + + which-typed-array@1.1.18: + resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==} + engines: {node: '>= 0.4'} + + which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + why-is-node-running@2.3.0: + resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} + engines: {node: '>=8'} + hasBin: true + + window-size@0.1.0: + resolution: {integrity: sha512-1pTPQDKTdd61ozlKGNCjhNRd+KPmgLSGa3mZTHoOliaGcESD8G1PXhh7c1fgiPjVbNVfgy2Faw4BI8/m0cC8Mg==} + engines: {node: '>= 0.8.0'} + + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + + wordwrap@0.0.2: + resolution: {integrity: sha512-xSBsCeh+g+dinoBv3GAOWM4LcVVO68wLXRanibtBSdUvkGWQRGeE9P7IwU9EmDDi4jA6L44lz15CGMwdw9N5+Q==} + engines: {node: '>=0.4.0'} + + wordwrapjs@4.0.1: + resolution: {integrity: sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==} + engines: {node: '>=8.0.0'} + + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + + wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + ws@8.18.0: + resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + xml-name-validator@4.0.0: + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + engines: {node: '>=12'} + + xml-name-validator@5.0.0: + resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==} + engines: {node: '>=18'} + + xmlchars@2.2.0: + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + + xtend@2.1.2: + resolution: {integrity: sha512-vMNKzr2rHP9Dp/e1NQFnLQlwlhp9L/LfvnsVdHxN1f+uggyVI3i08uD14GPvCToPkdsRfyPqIyYGmIk58V98ZQ==} + engines: {node: '>=0.4'} + + y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + + yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + + yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + + yaml-eslint-parser@1.3.0: + resolution: {integrity: sha512-E/+VitOorXSLiAqtTd7Yqax0/pAS3xaYMP+AUUJGOK1OZG3rhcj9fcJOM5HJ2VrP1FrStVCWr1muTfQCdj4tAA==} + engines: {node: ^14.17.0 || >=16.0.0} + + yaml@1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} + + yaml@2.3.1: + resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==} + engines: {node: '>= 14'} + + yaml@2.6.1: + resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==} + engines: {node: '>= 14'} + hasBin: true + + yaml@2.8.1: + resolution: {integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==} + engines: {node: '>= 14.6'} + hasBin: true + + yargs-parser@20.2.9: + resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} + engines: {node: '>=10'} + + yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + + yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + + yargs@3.10.0: + resolution: {integrity: sha512-QFzUah88GAGy9lyDKGBqZdkYApt63rCXYBGYnEP4xDJPXNqXXnBDACnbrXnViV6jRSqAePwrATi2i8mfYm4L1A==} + + yn@3.1.1: + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} + + yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + + zrender@6.0.0: + resolution: {integrity: sha512-41dFXEEXuJpNecuUQq6JlbybmnHaqqpGlbH1yxnA5V9MMP4SbohSVZsJIwz+zdjQXSSlR1Vc34EgH1zxyTDvhg==} + + zwitch@2.0.4: + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} + +snapshots: + + '@amap/amap-jsapi-loader@1.0.1': {} + + '@ampproject/remapping@2.3.0': + dependencies: + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.30 + + '@ant-design/colors@6.0.0': + dependencies: + '@ctrl/tinycolor': 3.6.1 + + '@ant-design/icons-svg@4.4.2': {} + + '@ant-design/icons-vue@7.0.1(vue@3.5.22(typescript@5.8.3))': + dependencies: + '@ant-design/colors': 6.0.0 + '@ant-design/icons-svg': 4.4.2 + vue: 3.5.22(typescript@5.8.3) + + '@antfu/eslint-config@5.4.1(@vue/compiler-sfc@3.5.22)(eslint-plugin-format@1.0.2(eslint@9.36.0(jiti@2.6.0)))(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@20.19.17)(jiti@2.6.0)(jsdom@22.1.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1))': + dependencies: + '@antfu/install-pkg': 1.1.0 + '@clack/prompts': 0.11.0 + '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.36.0(jiti@2.6.0)) + '@eslint/markdown': 7.3.0 + '@stylistic/eslint-plugin': 5.4.0(eslint@9.36.0(jiti@2.6.0)) + '@typescript-eslint/eslint-plugin': 8.44.1(@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3))(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + '@typescript-eslint/parser': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + '@vitest/eslint-plugin': 1.3.12(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@20.19.17)(jiti@2.6.0)(jsdom@22.1.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1)) + ansis: 4.1.0 + cac: 6.7.14 + eslint: 9.36.0(jiti@2.6.0) + eslint-config-flat-gitignore: 2.1.0(eslint@9.36.0(jiti@2.6.0)) + eslint-flat-config-utils: 2.1.4 + eslint-merge-processors: 2.0.0(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-antfu: 3.1.1(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-command: 3.3.1(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-import-lite: 0.3.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + eslint-plugin-jsdoc: 59.1.0(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-jsonc: 2.20.1(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-n: 17.23.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + eslint-plugin-no-only-tests: 3.3.0 + eslint-plugin-perfectionist: 4.15.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + eslint-plugin-pnpm: 1.1.2(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-regexp: 2.10.0(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-toml: 0.12.0(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-unicorn: 61.0.2(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-unused-imports: 4.2.0(@typescript-eslint/eslint-plugin@8.44.1(@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3))(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3))(eslint@9.36.0(jiti@2.6.0)) + eslint-plugin-vue: 10.5.0(@stylistic/eslint-plugin@5.4.0(eslint@9.36.0(jiti@2.6.0)))(@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3))(eslint@9.36.0(jiti@2.6.0))(vue-eslint-parser@10.2.0(eslint@9.36.0(jiti@2.6.0))) + eslint-plugin-yml: 1.18.0(eslint@9.36.0(jiti@2.6.0)) + eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.22)(eslint@9.36.0(jiti@2.6.0)) + globals: 16.4.0 + jsonc-eslint-parser: 2.4.0 + local-pkg: 1.1.2 + parse-gitignore: 2.0.0 + toml-eslint-parser: 0.10.0 + vue-eslint-parser: 10.2.0(eslint@9.36.0(jiti@2.6.0)) + yaml-eslint-parser: 1.3.0 + optionalDependencies: + eslint-plugin-format: 1.0.2(eslint@9.36.0(jiti@2.6.0)) + transitivePeerDependencies: + - '@eslint/json' + - '@vue/compiler-sfc' + - supports-color + - typescript + - vitest + + '@antfu/install-pkg@1.1.0': + dependencies: + package-manager-detector: 1.3.0 + tinyexec: 1.0.1 + + '@antfu/utils@9.2.0': {} + + '@antv/adjust@0.2.5': + dependencies: + '@antv/util': 2.0.17 + tslib: 1.14.1 + + '@antv/async-hook@2.2.9': + dependencies: + async: 3.2.6 + + '@antv/attr@0.3.5': + dependencies: + '@antv/color-util': 2.0.6 + '@antv/scale': 0.3.18 + '@antv/util': 2.0.17 + tslib: 2.8.1 + + '@antv/color-util@2.0.6': + dependencies: + '@antv/util': 2.0.17 + tslib: 2.8.1 + + '@antv/component@0.8.35': + dependencies: + '@antv/color-util': 2.0.6 + '@antv/dom-util': 2.0.4 + '@antv/g-base': 0.5.16 + '@antv/matrix-util': 3.1.0-beta.3 + '@antv/path-util': 2.0.15 + '@antv/scale': 0.3.18 + '@antv/util': 2.0.17 + fecha: 4.2.3 + tslib: 2.8.1 + + '@antv/coord@0.3.1': + dependencies: + '@antv/matrix-util': 3.1.0-beta.3 + '@antv/util': 2.0.17 + tslib: 2.8.1 + + '@antv/dom-util@2.0.4': + dependencies: + tslib: 2.8.1 + + '@antv/event-emitter@0.1.3': {} + + '@antv/g-base@0.5.16': + dependencies: + '@antv/event-emitter': 0.1.3 + '@antv/g-math': 0.1.9 + '@antv/matrix-util': 3.1.0-beta.3 + '@antv/path-util': 2.0.15 + '@antv/util': 2.0.17 + '@types/d3-timer': 2.0.3 + d3-ease: 1.0.7 + d3-interpolate: 3.0.1 + d3-timer: 1.0.10 + detect-browser: 5.3.0 + tslib: 2.8.1 + + '@antv/g-canvas@0.5.17': + dependencies: + '@antv/g-base': 0.5.16 + '@antv/g-math': 0.1.9 + '@antv/matrix-util': 3.1.0-beta.3 + '@antv/path-util': 2.0.15 + '@antv/util': 2.0.17 + gl-matrix: 3.4.3 + tslib: 2.8.1 + + '@antv/g-device-api@1.6.13': + dependencies: + '@antv/util': 3.3.10 + '@webgpu/types': 0.1.52 + eventemitter3: 5.0.1 + gl-matrix: 3.4.3 + tslib: 2.8.1 + + '@antv/g-math@0.1.9': + dependencies: + '@antv/util': 2.0.17 + gl-matrix: 3.4.3 + + '@antv/g-svg@0.5.7': + dependencies: + '@antv/g-base': 0.5.16 + '@antv/g-math': 0.1.9 + '@antv/util': 2.0.17 + detect-browser: 5.3.0 + tslib: 2.8.1 + + '@antv/g2@4.2.12': + dependencies: + '@antv/adjust': 0.2.5 + '@antv/attr': 0.3.5 + '@antv/color-util': 2.0.6 + '@antv/component': 0.8.35 + '@antv/coord': 0.3.1 + '@antv/dom-util': 2.0.4 + '@antv/event-emitter': 0.1.3 + '@antv/g-base': 0.5.16 + '@antv/g-canvas': 0.5.17 + '@antv/g-svg': 0.5.7 + '@antv/matrix-util': 3.1.0-beta.3 + '@antv/path-util': 2.0.15 + '@antv/scale': 0.3.18 + '@antv/util': 2.0.17 + tslib: 2.8.1 + + '@antv/g2plot@2.4.35': + dependencies: + '@antv/color-util': 2.0.6 + '@antv/event-emitter': 0.1.3 + '@antv/g-base': 0.5.16 + '@antv/g2': 4.2.12 + '@antv/matrix-util': 3.1.0-beta.3 + '@antv/path-util': 3.0.1 + '@antv/scale': 0.3.18 + '@antv/util': 2.0.17 + d3-hierarchy: 2.0.0 + d3-regression: 1.3.10 + fmin: 0.0.2 + pdfast: 0.2.0 + size-sensor: 1.0.2 + tslib: 2.8.1 + + '@antv/l7-component@2.23.0': + dependencies: + '@antv/l7-core': 2.23.0 + '@antv/l7-layers': 2.23.0 + '@antv/l7-utils': 2.23.0 + '@babel/runtime': 7.26.0 + eventemitter3: 4.0.7 + supercluster: 7.1.5 + + '@antv/l7-core@2.23.0': + dependencies: + '@antv/async-hook': 2.2.9 + '@antv/l7-utils': 2.23.0 + '@babel/runtime': 7.26.0 + '@mapbox/tiny-sdf': 1.2.5 + '@turf/helpers': 6.5.0 + ajv: 6.12.6 + element-resize-detector: 1.2.4 + eventemitter3: 4.0.7 + gl-matrix: 3.4.3 + hammerjs: 2.0.8 + viewport-mercator-project: 6.2.3 + + '@antv/l7-layers@2.23.0': + dependencies: + '@antv/async-hook': 2.2.9 + '@antv/l7-core': 2.23.0 + '@antv/l7-maps': 2.23.0 + '@antv/l7-source': 2.23.0 + '@antv/l7-utils': 2.23.0 + '@babel/runtime': 7.26.0 + '@mapbox/martini': 0.2.0 + '@turf/clone': 6.5.0 + '@turf/helpers': 6.5.0 + '@turf/meta': 6.5.0 + '@turf/polygon-to-line': 6.5.0 + '@turf/union': 6.5.0 + d3-array: 2.12.1 + d3-color: 1.4.1 + d3-interpolate: 1.4.0 + d3-scale: 2.2.2 + earcut: 2.2.4 + eventemitter3: 4.0.7 + extrude-polyline: 1.0.6 + gl-matrix: 3.4.3 + gl-vec2: 1.3.0 + polyline-miter-util: 1.0.1 + + '@antv/l7-map@2.23.0': + dependencies: + '@antv/l7-utils': 2.23.0 + '@babel/runtime': 7.26.0 + '@mapbox/point-geometry': 0.1.0 + '@mapbox/unitbezier': 0.0.1 + eventemitter3: 4.0.7 + gl-matrix: 3.4.3 + + '@antv/l7-maps@2.23.0': + dependencies: + '@amap/amap-jsapi-loader': 1.0.1 + '@antv/l7-core': 2.23.0 + '@antv/l7-map': 2.23.0 + '@antv/l7-utils': 2.23.0 + '@babel/runtime': 7.26.0 + eventemitter3: 4.0.7 + gl-matrix: 3.4.3 + mapbox-gl: 1.13.3 + maplibre-gl: 3.6.2 + pmtiles: 2.11.0 + viewport-mercator-project: 6.2.3 + + '@antv/l7-renderer@2.23.0': + dependencies: + '@antv/g-device-api': 1.6.13 + '@antv/l7-core': 2.23.0 + '@antv/l7-utils': 2.23.0 + '@babel/runtime': 7.26.0 + regl: 1.6.1 + + '@antv/l7-scene@2.23.0': + dependencies: + '@antv/l7-component': 2.23.0 + '@antv/l7-core': 2.23.0 + '@antv/l7-layers': 2.23.0 + '@antv/l7-maps': 2.23.0 + '@antv/l7-renderer': 2.23.0 + '@antv/l7-utils': 2.23.0 + '@babel/runtime': 7.26.0 + eventemitter3: 4.0.7 + + '@antv/l7-source@2.23.0': + dependencies: + '@antv/async-hook': 2.2.9 + '@antv/l7-core': 2.23.0 + '@antv/l7-utils': 2.23.0 + '@babel/runtime': 7.26.0 + '@mapbox/geojson-rewind': 0.5.2 + '@mapbox/vector-tile': 1.3.1 + '@turf/helpers': 6.5.0 + '@turf/invariant': 6.5.0 + '@turf/meta': 6.5.0 + d3-dsv: 1.2.0 + d3-hexbin: 0.2.2 + eventemitter3: 4.0.7 + geojson-vt: 3.2.1 + pbf: 3.3.0 + supercluster: 7.1.5 + + '@antv/l7-utils@2.23.0': + dependencies: + '@babel/runtime': 7.26.0 + '@turf/bbox': 6.5.0 + '@turf/bbox-polygon': 6.5.0 + '@turf/helpers': 6.5.0 + d3-color: 1.4.1 + earcut: 2.2.4 + eventemitter3: 4.0.7 + gl-matrix: 3.4.3 + lodash: 4.17.21 + web-worker-helper: 0.0.3 + + '@antv/l7@2.23.0': + dependencies: + '@antv/l7-component': 2.23.0 + '@antv/l7-core': 2.23.0 + '@antv/l7-layers': 2.23.0 + '@antv/l7-maps': 2.23.0 + '@antv/l7-scene': 2.23.0 + '@antv/l7-source': 2.23.0 + '@antv/l7-utils': 2.23.0 + '@babel/runtime': 7.26.0 + + '@antv/matrix-util@3.0.4': + dependencies: + '@antv/util': 2.0.17 + gl-matrix: 3.4.3 + tslib: 2.8.1 + + '@antv/matrix-util@3.1.0-beta.3': + dependencies: + '@antv/util': 2.0.17 + gl-matrix: 3.4.3 + tslib: 2.8.1 + + '@antv/path-util@2.0.15': + dependencies: + '@antv/matrix-util': 3.0.4 + '@antv/util': 2.0.17 + tslib: 2.8.1 + + '@antv/path-util@3.0.1': + dependencies: + gl-matrix: 3.4.3 + lodash-es: 4.17.21 + tslib: 2.8.1 + + '@antv/scale@0.3.18': + dependencies: + '@antv/util': 2.0.17 + fecha: 4.2.3 + tslib: 2.8.1 + + '@antv/util@2.0.17': + dependencies: + csstype: 3.1.3 + tslib: 2.8.1 + + '@antv/util@3.3.10': + dependencies: + fast-deep-equal: 3.1.3 + gl-matrix: 3.4.3 + tslib: 2.8.1 + + '@babel/code-frame@7.26.2': + dependencies: + '@babel/helper-validator-identifier': 7.25.9 + js-tokens: 4.0.0 + picocolors: 1.1.1 + + '@babel/code-frame@7.27.1': + dependencies: + '@babel/helper-validator-identifier': 7.27.1 + js-tokens: 4.0.0 + picocolors: 1.1.1 + + '@babel/compat-data@7.28.0': {} + + '@babel/core@7.28.3': + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.3 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3) + '@babel/helpers': 7.28.3 + '@babel/parser': 7.28.3 + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.3 + '@babel/types': 7.28.2 + convert-source-map: 2.0.0 + debug: 4.4.1 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/generator@7.26.3': + dependencies: + '@babel/parser': 7.26.3 + '@babel/types': 7.26.3 + '@jridgewell/gen-mapping': 0.3.8 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 3.1.0 + + '@babel/generator@7.28.3': + dependencies: + '@babel/parser': 7.28.3 + '@babel/types': 7.28.2 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.30 + jsesc: 3.1.0 + + '@babel/helper-annotate-as-pure@7.27.3': + dependencies: + '@babel/types': 7.28.2 + + '@babel/helper-compilation-targets@7.27.2': + dependencies: + '@babel/compat-data': 7.28.0 + '@babel/helper-validator-option': 7.27.1 + browserslist: 4.24.3 + lru-cache: 5.1.1 + semver: 6.3.1 + + '@babel/helper-create-class-features-plugin@7.28.3(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.3) + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/traverse': 7.28.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-globals@7.28.0': {} + + '@babel/helper-member-expression-to-functions@7.27.1': + dependencies: + '@babel/traverse': 7.28.3 + '@babel/types': 7.28.2 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-imports@7.25.9': + dependencies: + '@babel/traverse': 7.26.4 + '@babel/types': 7.26.3 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-imports@7.27.1': + dependencies: + '@babel/traverse': 7.28.3 + '@babel/types': 7.28.2 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.28.3 + transitivePeerDependencies: + - supports-color + + '@babel/helper-optimise-call-expression@7.27.1': + dependencies: + '@babel/types': 7.28.2 + + '@babel/helper-plugin-utils@7.27.1': {} + + '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/traverse': 7.28.3 + transitivePeerDependencies: + - supports-color + + '@babel/helper-skip-transparent-expression-wrappers@7.27.1': + dependencies: + '@babel/traverse': 7.28.3 + '@babel/types': 7.28.2 + transitivePeerDependencies: + - supports-color + + '@babel/helper-string-parser@7.25.9': {} + + '@babel/helper-string-parser@7.27.1': {} + + '@babel/helper-validator-identifier@7.25.9': {} + + '@babel/helper-validator-identifier@7.27.1': {} + + '@babel/helper-validator-option@7.27.1': {} + + '@babel/helpers@7.28.3': + dependencies: + '@babel/template': 7.27.2 + '@babel/types': 7.28.2 + + '@babel/parser@7.26.3': + dependencies: + '@babel/types': 7.26.3 + + '@babel/parser@7.27.7': + dependencies: + '@babel/types': 7.28.2 + + '@babel/parser@7.28.3': + dependencies: + '@babel/types': 7.28.2 + + '@babel/parser@7.28.4': + dependencies: + '@babel/types': 7.28.4 + + '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-typescript@7.28.0(@babel/core@7.28.3)': + dependencies: + '@babel/core': 7.28.3 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.3) + transitivePeerDependencies: + - supports-color + + '@babel/runtime@7.26.0': + dependencies: + regenerator-runtime: 0.14.1 + + '@babel/template@7.25.9': + dependencies: + '@babel/code-frame': 7.26.2 + '@babel/parser': 7.26.3 + '@babel/types': 7.26.3 + + '@babel/template@7.27.2': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/parser': 7.28.3 + '@babel/types': 7.28.2 + + '@babel/traverse@7.26.4': + dependencies: + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.26.3 + '@babel/parser': 7.26.3 + '@babel/template': 7.25.9 + '@babel/types': 7.26.3 + debug: 4.4.0 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + '@babel/traverse@7.27.7': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.3 + '@babel/parser': 7.28.3 + '@babel/template': 7.27.2 + '@babel/types': 7.28.2 + debug: 4.4.1 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + '@babel/traverse@7.28.3': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.3 + '@babel/helper-globals': 7.28.0 + '@babel/parser': 7.28.3 + '@babel/template': 7.27.2 + '@babel/types': 7.28.2 + debug: 4.4.1 + transitivePeerDependencies: + - supports-color + + '@babel/types@7.26.3': + dependencies: + '@babel/helper-string-parser': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 + + '@babel/types@7.28.2': + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + + '@babel/types@7.28.4': + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + + '@clack/core@0.5.0': + dependencies: + picocolors: 1.1.1 + sisteransi: 1.0.5 + + '@clack/prompts@0.11.0': + dependencies: + '@clack/core': 0.5.0 + picocolors: 1.1.1 + sisteransi: 1.0.5 + + '@commitlint/cli@18.6.1(@types/node@20.19.17)(typescript@5.8.3)': + dependencies: + '@commitlint/format': 18.6.1 + '@commitlint/lint': 18.6.1 + '@commitlint/load': 18.6.1(@types/node@20.19.17)(typescript@5.8.3) + '@commitlint/read': 18.6.1 + '@commitlint/types': 18.6.1 + execa: 5.1.1 + lodash.isfunction: 3.0.9 + resolve-from: 5.0.0 + resolve-global: 1.0.0 + yargs: 17.7.2 + transitivePeerDependencies: + - '@types/node' + - typescript + + '@commitlint/config-conventional@18.6.3': + dependencies: + '@commitlint/types': 18.6.1 + conventional-changelog-conventionalcommits: 7.0.2 + + '@commitlint/config-validator@18.6.1': + dependencies: + '@commitlint/types': 18.6.1 + ajv: 8.17.1 + + '@commitlint/ensure@18.6.1': + dependencies: + '@commitlint/types': 18.6.1 + lodash.camelcase: 4.3.0 + lodash.kebabcase: 4.1.1 + lodash.snakecase: 4.1.1 + lodash.startcase: 4.4.0 + lodash.upperfirst: 4.3.1 + + '@commitlint/execute-rule@18.6.1': {} + + '@commitlint/format@18.6.1': + dependencies: + '@commitlint/types': 18.6.1 + chalk: 4.1.2 + + '@commitlint/is-ignored@18.6.1': + dependencies: + '@commitlint/types': 18.6.1 + semver: 7.6.0 + + '@commitlint/lint@18.6.1': + dependencies: + '@commitlint/is-ignored': 18.6.1 + '@commitlint/parse': 18.6.1 + '@commitlint/rules': 18.6.1 + '@commitlint/types': 18.6.1 + + '@commitlint/load@18.6.1(@types/node@20.19.17)(typescript@5.8.3)': + dependencies: + '@commitlint/config-validator': 18.6.1 + '@commitlint/execute-rule': 18.6.1 + '@commitlint/resolve-extends': 18.6.1 + '@commitlint/types': 18.6.1 + chalk: 4.1.2 + cosmiconfig: 8.3.6(typescript@5.8.3) + cosmiconfig-typescript-loader: 5.1.0(@types/node@20.19.17)(cosmiconfig@8.3.6(typescript@5.8.3))(typescript@5.8.3) + lodash.isplainobject: 4.0.6 + lodash.merge: 4.6.2 + lodash.uniq: 4.5.0 + resolve-from: 5.0.0 + transitivePeerDependencies: + - '@types/node' + - typescript + + '@commitlint/message@18.6.1': {} + + '@commitlint/parse@18.6.1': + dependencies: + '@commitlint/types': 18.6.1 + conventional-changelog-angular: 7.0.0 + conventional-commits-parser: 5.0.0 + + '@commitlint/read@18.6.1': + dependencies: + '@commitlint/top-level': 18.6.1 + '@commitlint/types': 18.6.1 + git-raw-commits: 2.0.11 + minimist: 1.2.8 + + '@commitlint/resolve-extends@18.6.1': + dependencies: + '@commitlint/config-validator': 18.6.1 + '@commitlint/types': 18.6.1 + import-fresh: 3.3.0 + lodash.mergewith: 4.6.2 + resolve-from: 5.0.0 + resolve-global: 1.0.0 + + '@commitlint/rules@18.6.1': + dependencies: + '@commitlint/ensure': 18.6.1 + '@commitlint/message': 18.6.1 + '@commitlint/to-lines': 18.6.1 + '@commitlint/types': 18.6.1 + execa: 5.1.1 + + '@commitlint/to-lines@18.6.1': {} + + '@commitlint/top-level@18.6.1': + dependencies: + find-up: 5.0.0 + + '@commitlint/types@18.6.1': + dependencies: + chalk: 4.1.2 + + '@cspotcode/source-map-support@0.8.1': + dependencies: + '@jridgewell/trace-mapping': 0.3.9 + + '@ctrl/tinycolor@3.6.1': {} + + '@ctrl/tinycolor@4.2.0': {} + + '@dprint/formatter@0.3.0': {} + + '@dprint/markdown@0.17.8': {} + + '@dprint/toml@0.6.4': {} + + '@emnapi/core@1.11.1': + dependencies: + '@emnapi/wasi-threads': 1.2.2 + tslib: 2.8.1 + optional: true + + '@emnapi/core@1.5.0': + dependencies: + '@emnapi/wasi-threads': 1.1.0 + tslib: 2.8.1 + optional: true + + '@emnapi/runtime@1.11.1': + dependencies: + tslib: 2.8.1 + optional: true + + '@emnapi/runtime@1.5.0': + dependencies: + tslib: 2.8.1 + optional: true + + '@emnapi/wasi-threads@1.1.0': + dependencies: + tslib: 2.8.1 + optional: true + + '@emnapi/wasi-threads@1.2.2': + dependencies: + tslib: 2.8.1 + optional: true + + '@emotion/babel-plugin@11.13.5': + dependencies: + '@babel/helper-module-imports': 7.25.9 + '@babel/runtime': 7.26.0 + '@emotion/hash': 0.9.2 + '@emotion/memoize': 0.9.0 + '@emotion/serialize': 1.3.3 + babel-plugin-macros: 3.1.0 + convert-source-map: 1.9.0 + escape-string-regexp: 4.0.0 + find-root: 1.1.0 + source-map: 0.5.7 + stylis: 4.2.0 + transitivePeerDependencies: + - supports-color + + '@emotion/cache@11.14.0': + dependencies: + '@emotion/memoize': 0.9.0 + '@emotion/sheet': 1.4.0 + '@emotion/utils': 1.4.2 + '@emotion/weak-memoize': 0.4.0 + stylis: 4.2.0 + + '@emotion/css@11.13.5': + dependencies: + '@emotion/babel-plugin': 11.13.5 + '@emotion/cache': 11.14.0 + '@emotion/serialize': 1.3.3 + '@emotion/sheet': 1.4.0 + '@emotion/utils': 1.4.2 + transitivePeerDependencies: + - supports-color + + '@emotion/hash@0.9.2': {} + + '@emotion/memoize@0.9.0': {} + + '@emotion/serialize@1.3.3': + dependencies: + '@emotion/hash': 0.9.2 + '@emotion/memoize': 0.9.0 + '@emotion/unitless': 0.10.0 + '@emotion/utils': 1.4.2 + csstype: 3.1.3 + + '@emotion/server@11.11.0(@emotion/css@11.13.5)': + dependencies: + '@emotion/utils': 1.4.2 + html-tokenize: 2.0.1 + multipipe: 1.0.2 + through: 2.3.8 + optionalDependencies: + '@emotion/css': 11.13.5 + + '@emotion/sheet@1.4.0': {} + + '@emotion/unitless@0.10.0': {} + + '@emotion/unitless@0.8.1': {} + + '@emotion/utils@1.4.2': {} + + '@emotion/weak-memoize@0.4.0': {} + + '@es-joy/jsdoccomment@0.50.2': + dependencies: + '@types/estree': 1.0.8 + '@typescript-eslint/types': 8.18.2 + comment-parser: 1.4.1 + esquery: 1.6.0 + jsdoc-type-pratt-parser: 4.1.0 + + '@es-joy/jsdoccomment@0.58.0': + dependencies: + '@types/estree': 1.0.8 + '@typescript-eslint/types': 8.44.1 + comment-parser: 1.4.1 + esquery: 1.6.0 + jsdoc-type-pratt-parser: 5.4.0 + + '@esbuild/aix-ppc64@0.25.10': + optional: true + + '@esbuild/android-arm64@0.18.20': + optional: true + + '@esbuild/android-arm64@0.25.10': + optional: true + + '@esbuild/android-arm@0.18.20': + optional: true + + '@esbuild/android-arm@0.25.10': + optional: true + + '@esbuild/android-x64@0.18.20': + optional: true + + '@esbuild/android-x64@0.25.10': + optional: true + + '@esbuild/darwin-arm64@0.18.20': + optional: true + + '@esbuild/darwin-arm64@0.25.10': + optional: true + + '@esbuild/darwin-x64@0.18.20': + optional: true + + '@esbuild/darwin-x64@0.25.10': + optional: true + + '@esbuild/freebsd-arm64@0.18.20': + optional: true + + '@esbuild/freebsd-arm64@0.25.10': + optional: true + + '@esbuild/freebsd-x64@0.18.20': + optional: true + + '@esbuild/freebsd-x64@0.25.10': + optional: true + + '@esbuild/linux-arm64@0.18.20': + optional: true + + '@esbuild/linux-arm64@0.25.10': + optional: true + + '@esbuild/linux-arm@0.18.20': + optional: true + + '@esbuild/linux-arm@0.25.10': + optional: true + + '@esbuild/linux-ia32@0.18.20': + optional: true + + '@esbuild/linux-ia32@0.25.10': + optional: true + + '@esbuild/linux-loong64@0.18.20': + optional: true + + '@esbuild/linux-loong64@0.25.10': + optional: true + + '@esbuild/linux-mips64el@0.18.20': + optional: true + + '@esbuild/linux-mips64el@0.25.10': + optional: true + + '@esbuild/linux-ppc64@0.18.20': + optional: true + + '@esbuild/linux-ppc64@0.25.10': + optional: true + + '@esbuild/linux-riscv64@0.18.20': + optional: true + + '@esbuild/linux-riscv64@0.25.10': + optional: true + + '@esbuild/linux-s390x@0.18.20': + optional: true + + '@esbuild/linux-s390x@0.25.10': + optional: true + + '@esbuild/linux-x64@0.18.20': + optional: true + + '@esbuild/linux-x64@0.25.10': + optional: true + + '@esbuild/netbsd-arm64@0.25.10': + optional: true + + '@esbuild/netbsd-x64@0.18.20': + optional: true + + '@esbuild/netbsd-x64@0.25.10': + optional: true + + '@esbuild/openbsd-arm64@0.25.10': + optional: true + + '@esbuild/openbsd-x64@0.18.20': + optional: true + + '@esbuild/openbsd-x64@0.25.10': + optional: true + + '@esbuild/openharmony-arm64@0.25.10': + optional: true + + '@esbuild/sunos-x64@0.18.20': + optional: true + + '@esbuild/sunos-x64@0.25.10': + optional: true + + '@esbuild/win32-arm64@0.18.20': + optional: true + + '@esbuild/win32-arm64@0.25.10': + optional: true + + '@esbuild/win32-ia32@0.18.20': + optional: true + + '@esbuild/win32-ia32@0.25.10': + optional: true + + '@esbuild/win32-x64@0.18.20': + optional: true + + '@esbuild/win32-x64@0.25.10': + optional: true + + '@eslint-community/eslint-plugin-eslint-comments@4.5.0(eslint@9.36.0(jiti@2.6.0))': + dependencies: + escape-string-regexp: 4.0.0 + eslint: 9.36.0(jiti@2.6.0) + ignore: 5.3.2 + + '@eslint-community/eslint-utils@4.9.0(eslint@9.36.0(jiti@2.6.0))': + dependencies: + eslint: 9.36.0(jiti@2.6.0) + eslint-visitor-keys: 3.4.3 + + '@eslint-community/regexpp@4.12.1': {} + + '@eslint/compat@1.4.0(eslint@9.36.0(jiti@2.6.0))': + dependencies: + '@eslint/core': 0.16.0 + optionalDependencies: + eslint: 9.36.0(jiti@2.6.0) + + '@eslint/config-array@0.21.0': + dependencies: + '@eslint/object-schema': 2.1.6 + debug: 4.4.1 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@eslint/config-helpers@0.3.1': {} + + '@eslint/core@0.15.2': + dependencies: + '@types/json-schema': 7.0.15 + + '@eslint/core@0.16.0': + dependencies: + '@types/json-schema': 7.0.15 + + '@eslint/eslintrc@3.3.1': + dependencies: + ajv: 6.12.6 + debug: 4.4.1 + espree: 10.4.0 + globals: 14.0.0 + ignore: 5.3.2 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + + '@eslint/js@9.36.0': {} + + '@eslint/markdown@7.3.0': + dependencies: + '@eslint/core': 0.15.2 + '@eslint/plugin-kit': 0.3.5 + github-slugger: 2.0.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-frontmatter: 2.0.1 + mdast-util-gfm: 3.1.0 + micromark-extension-frontmatter: 2.0.0 + micromark-extension-gfm: 3.0.0 + micromark-util-normalize-identifier: 2.0.1 + transitivePeerDependencies: + - supports-color + + '@eslint/object-schema@2.1.6': {} + + '@eslint/plugin-kit@0.3.5': + dependencies: + '@eslint/core': 0.15.2 + levn: 0.4.1 + + '@humanfs/core@0.19.1': {} + + '@humanfs/node@0.16.6': + dependencies: + '@humanfs/core': 0.19.1 + '@humanwhocodes/retry': 0.3.1 + + '@humanwhocodes/module-importer@1.0.1': {} + + '@humanwhocodes/retry@0.3.1': {} + + '@humanwhocodes/retry@0.4.3': {} + + '@iconify/types@2.0.0': {} + + '@iconify/utils@3.0.1': + dependencies: + '@antfu/install-pkg': 1.1.0 + '@antfu/utils': 9.2.0 + '@iconify/types': 2.0.0 + debug: 4.4.1 + globals: 15.15.0 + kolorist: 1.8.0 + local-pkg: 1.1.1 + mlly: 1.7.4 + transitivePeerDependencies: + - supports-color + + '@intlify/core-base@9.14.5': + dependencies: + '@intlify/message-compiler': 9.14.5 + '@intlify/shared': 9.14.5 + + '@intlify/message-compiler@9.14.5': + dependencies: + '@intlify/shared': 9.14.5 + source-map-js: 1.2.1 + + '@intlify/shared@9.14.5': {} + + '@isaacs/cliui@8.0.2': + dependencies: + string-width: 5.1.2 + string-width-cjs: string-width@4.2.3 + strip-ansi: 7.1.0 + strip-ansi-cjs: strip-ansi@6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: wrap-ansi@7.0.0 + + '@jridgewell/gen-mapping@0.3.13': + dependencies: + '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping': 0.3.30 + + '@jridgewell/gen-mapping@0.3.8': + dependencies: + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping': 0.3.25 + + '@jridgewell/remapping@2.3.5': + dependencies: + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.30 + + '@jridgewell/resolve-uri@3.1.2': {} + + '@jridgewell/set-array@1.2.1': {} + + '@jridgewell/source-map@0.3.6': + dependencies: + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.30 + optional: true + + '@jridgewell/sourcemap-codec@1.5.0': {} + + '@jridgewell/sourcemap-codec@1.5.5': {} + + '@jridgewell/trace-mapping@0.3.25': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 + + '@jridgewell/trace-mapping@0.3.30': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 + + '@jridgewell/trace-mapping@0.3.9': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 + + '@kirklin/logger@0.0.2': {} + + '@ljharb/resumer@0.0.1': + dependencies: + '@ljharb/through': 2.3.13 + + '@ljharb/through@2.3.13': + dependencies: + call-bind: 1.0.8 + + '@mapbox/geojson-rewind@0.5.2': + dependencies: + get-stream: 6.0.1 + minimist: 1.2.8 + + '@mapbox/geojson-types@1.0.2': {} + + '@mapbox/jsonlint-lines-primitives@2.0.2': {} + + '@mapbox/mapbox-gl-supported@1.5.0(mapbox-gl@1.13.3)': + dependencies: + mapbox-gl: 1.13.3 + + '@mapbox/martini@0.2.0': {} + + '@mapbox/point-geometry@0.1.0': {} + + '@mapbox/tiny-sdf@1.2.5': {} + + '@mapbox/tiny-sdf@2.0.6': {} + + '@mapbox/unitbezier@0.0.0': {} + + '@mapbox/unitbezier@0.0.1': {} + + '@mapbox/vector-tile@1.3.1': + dependencies: + '@mapbox/point-geometry': 0.1.0 + + '@mapbox/whoots-js@3.1.0': {} + + '@maplibre/maplibre-gl-style-spec@19.3.3': + dependencies: + '@mapbox/jsonlint-lines-primitives': 2.0.2 + '@mapbox/unitbezier': 0.0.1 + json-stringify-pretty-compact: 3.0.0 + minimist: 1.2.8 + rw: 1.3.3 + sort-object: 3.0.3 + + '@mistjs/vite-plugin-preload@0.0.1(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))': + dependencies: + '@rollup/pluginutils': 5.1.4 + jsdom: 22.1.0 + prettier: 2.8.8 + vite: rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1) + transitivePeerDependencies: + - bufferutil + - canvas + - rollup + - supports-color + - utf-8-validate + + '@napi-rs/wasm-runtime@1.0.7': + dependencies: + '@emnapi/core': 1.5.0 + '@emnapi/runtime': 1.5.0 + '@tybys/wasm-util': 0.10.1 + optional: true + + '@napi-rs/wasm-runtime@1.1.5(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)': + dependencies: + '@emnapi/core': 1.11.1 + '@emnapi/runtime': 1.11.1 + '@tybys/wasm-util': 0.10.2 + optional: true + + '@nodelib/fs.scandir@2.1.5': + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + '@nodelib/fs.stat@2.0.5': {} + + '@nodelib/fs.walk@1.2.8': + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.18.0 + + '@one-ini/wasm@0.1.1': {} + + '@oxc-project/runtime@0.92.0': {} + + '@oxc-project/types@0.137.0': {} + + '@oxc-project/types@0.92.0': {} + + '@pkgjs/parseargs@0.11.0': + optional: true + + '@pkgr/core@0.1.2': {} + + '@polka/url@1.0.0-next.28': {} + + '@quansync/fs@0.1.5': + dependencies: + quansync: 0.2.11 + + '@rolldown/binding-android-arm64@1.0.0-beta.40': + optional: true + + '@rolldown/binding-android-arm64@1.1.2': + optional: true + + '@rolldown/binding-darwin-arm64@1.0.0-beta.40': + optional: true + + '@rolldown/binding-darwin-arm64@1.1.2': + optional: true + + '@rolldown/binding-darwin-x64@1.0.0-beta.40': + optional: true + + '@rolldown/binding-darwin-x64@1.1.2': + optional: true + + '@rolldown/binding-freebsd-x64@1.0.0-beta.40': + optional: true + + '@rolldown/binding-freebsd-x64@1.1.2': + optional: true + + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.40': + optional: true + + '@rolldown/binding-linux-arm-gnueabihf@1.1.2': + optional: true + + '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.40': + optional: true + + '@rolldown/binding-linux-arm64-gnu@1.1.2': + optional: true + + '@rolldown/binding-linux-arm64-musl@1.0.0-beta.40': + optional: true + + '@rolldown/binding-linux-arm64-musl@1.1.2': + optional: true + + '@rolldown/binding-linux-ppc64-gnu@1.1.2': + optional: true + + '@rolldown/binding-linux-s390x-gnu@1.1.2': + optional: true + + '@rolldown/binding-linux-x64-gnu@1.0.0-beta.40': + optional: true + + '@rolldown/binding-linux-x64-gnu@1.1.2': + optional: true + + '@rolldown/binding-linux-x64-musl@1.0.0-beta.40': + optional: true + + '@rolldown/binding-linux-x64-musl@1.1.2': + optional: true + + '@rolldown/binding-openharmony-arm64@1.0.0-beta.40': + optional: true + + '@rolldown/binding-openharmony-arm64@1.1.2': + optional: true + + '@rolldown/binding-wasm32-wasi@1.0.0-beta.40': + dependencies: + '@napi-rs/wasm-runtime': 1.0.7 + optional: true + + '@rolldown/binding-wasm32-wasi@1.1.2': + dependencies: + '@emnapi/core': 1.11.1 + '@emnapi/runtime': 1.11.1 + '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1) + optional: true + + '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.40': + optional: true + + '@rolldown/binding-win32-arm64-msvc@1.1.2': + optional: true + + '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.40': + optional: true + + '@rolldown/binding-win32-x64-msvc@1.0.0-beta.40': + optional: true + + '@rolldown/binding-win32-x64-msvc@1.1.2': + optional: true + + '@rolldown/pluginutils@1.0.0-beta.29': {} + + '@rolldown/pluginutils@1.0.0-beta.40': {} + + '@rolldown/pluginutils@1.0.1': {} + + '@rollup/pluginutils@5.1.4': + dependencies: + '@types/estree': 1.0.6 + estree-walker: 2.0.2 + picomatch: 4.0.2 + + '@rollup/rollup-android-arm-eabi@4.46.3': + optional: true + + '@rollup/rollup-android-arm64@4.46.3': + optional: true + + '@rollup/rollup-darwin-arm64@4.46.3': + optional: true + + '@rollup/rollup-darwin-x64@4.46.3': + optional: true + + '@rollup/rollup-freebsd-arm64@4.46.3': + optional: true + + '@rollup/rollup-freebsd-x64@4.46.3': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.46.3': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.46.3': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.46.3': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.46.3': + optional: true + + '@rollup/rollup-linux-loongarch64-gnu@4.46.3': + optional: true + + '@rollup/rollup-linux-ppc64-gnu@4.46.3': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.46.3': + optional: true + + '@rollup/rollup-linux-riscv64-musl@4.46.3': + optional: true + + '@rollup/rollup-linux-s390x-gnu@4.46.3': + optional: true + + '@rollup/rollup-linux-x64-gnu@4.46.3': + optional: true + + '@rollup/rollup-linux-x64-musl@4.46.3': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.46.3': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.46.3': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.46.3': + optional: true + + '@simonwep/pickr@1.8.2': + dependencies: + core-js: 3.39.0 + nanopop: 2.4.2 + + '@stylistic/eslint-plugin@5.4.0(eslint@9.36.0(jiti@2.6.0))': + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0)) + '@typescript-eslint/types': 8.44.1 + eslint: 9.36.0(jiti@2.6.0) + eslint-visitor-keys: 4.2.1 + espree: 10.4.0 + estraverse: 5.3.0 + picomatch: 4.0.3 + + '@tootallnate/once@2.0.0': {} + + '@tsconfig/node10@1.0.11': {} + + '@tsconfig/node12@1.0.11': {} + + '@tsconfig/node14@1.0.3': {} + + '@tsconfig/node16@1.0.4': {} + + '@turf/bbox-polygon@6.5.0': + dependencies: + '@turf/helpers': 6.5.0 + + '@turf/bbox@6.5.0': + dependencies: + '@turf/helpers': 6.5.0 + '@turf/meta': 6.5.0 + + '@turf/clone@6.5.0': + dependencies: + '@turf/helpers': 6.5.0 + + '@turf/helpers@6.5.0': {} + + '@turf/invariant@6.5.0': + dependencies: + '@turf/helpers': 6.5.0 + + '@turf/meta@6.5.0': + dependencies: + '@turf/helpers': 6.5.0 + + '@turf/polygon-to-line@6.5.0': + dependencies: + '@turf/helpers': 6.5.0 + '@turf/invariant': 6.5.0 + + '@turf/union@6.5.0': + dependencies: + '@turf/helpers': 6.5.0 + '@turf/invariant': 6.5.0 + polygon-clipping: 0.15.7 + + '@tybys/wasm-util@0.10.1': + dependencies: + tslib: 2.8.1 + optional: true + + '@tybys/wasm-util@0.10.2': + dependencies: + tslib: 2.8.1 + optional: true + + '@types/chai@5.2.2': + dependencies: + '@types/deep-eql': 4.0.2 + + '@types/crypto-js@4.2.2': {} + + '@types/d3-timer@2.0.3': {} + + '@types/debug@4.1.12': + dependencies: + '@types/ms': 2.1.0 + + '@types/deep-eql@4.0.2': {} + + '@types/estree@1.0.6': {} + + '@types/estree@1.0.8': {} + + '@types/fs-extra@11.0.4': + dependencies: + '@types/jsonfile': 6.1.4 + '@types/node': 20.19.17 + + '@types/geojson@7946.0.15': {} + + '@types/json-schema@7.0.15': {} + + '@types/jsonfile@6.1.4': + dependencies: + '@types/node': 20.19.17 + + '@types/lodash-es@4.17.12': + dependencies: + '@types/lodash': 4.17.20 + + '@types/lodash@4.17.20': {} + + '@types/mapbox__point-geometry@0.1.4': {} + + '@types/mapbox__vector-tile@1.3.4': + dependencies: + '@types/geojson': 7946.0.15 + '@types/mapbox__point-geometry': 0.1.4 + '@types/pbf': 3.0.5 + + '@types/mdast@4.0.4': + dependencies: + '@types/unist': 2.0.11 + + '@types/minimist@1.2.5': {} + + '@types/ms@2.1.0': {} + + '@types/node@20.19.17': + dependencies: + undici-types: 6.21.0 + + '@types/normalize-package-data@2.4.4': {} + + '@types/parse-json@4.0.2': {} + + '@types/pbf@3.0.5': {} + + '@types/supercluster@7.1.3': + dependencies: + '@types/geojson': 7946.0.15 + + '@types/treeify@1.0.3': {} + + '@types/unist@2.0.11': {} + + '@types/unist@3.0.3': {} + + '@types/web-bluetooth@0.0.20': {} + + '@typescript-eslint/eslint-plugin@8.44.1(@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3))(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3)': + dependencies: + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + '@typescript-eslint/scope-manager': 8.44.1 + '@typescript-eslint/type-utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.44.1 + eslint: 9.36.0(jiti@2.6.0) + graphemer: 1.4.0 + ignore: 7.0.5 + natural-compare: 1.4.0 + ts-api-utils: 2.1.0(typescript@5.8.3) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3)': + dependencies: + '@typescript-eslint/scope-manager': 8.44.1 + '@typescript-eslint/types': 8.44.1 + '@typescript-eslint/typescript-estree': 8.44.1(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.44.1 + debug: 4.4.3 + eslint: 9.36.0(jiti@2.6.0) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/project-service@8.44.1(typescript@5.8.3)': + dependencies: + '@typescript-eslint/tsconfig-utils': 8.44.1(typescript@5.8.3) + '@typescript-eslint/types': 8.44.1 + debug: 4.4.3 + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/scope-manager@8.44.1': + dependencies: + '@typescript-eslint/types': 8.44.1 + '@typescript-eslint/visitor-keys': 8.44.1 + + '@typescript-eslint/tsconfig-utils@8.44.1(typescript@5.8.3)': + dependencies: + typescript: 5.8.3 + + '@typescript-eslint/type-utils@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3)': + dependencies: + '@typescript-eslint/types': 8.44.1 + '@typescript-eslint/typescript-estree': 8.44.1(typescript@5.8.3) + '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + debug: 4.4.3 + eslint: 9.36.0(jiti@2.6.0) + ts-api-utils: 2.1.0(typescript@5.8.3) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/types@8.18.2': {} + + '@typescript-eslint/types@8.44.1': {} + + '@typescript-eslint/typescript-estree@8.44.1(typescript@5.8.3)': + dependencies: + '@typescript-eslint/project-service': 8.44.1(typescript@5.8.3) + '@typescript-eslint/tsconfig-utils': 8.44.1(typescript@5.8.3) + '@typescript-eslint/types': 8.44.1 + '@typescript-eslint/visitor-keys': 8.44.1 + debug: 4.4.3 + fast-glob: 3.3.2 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.7.2 + ts-api-utils: 2.1.0(typescript@5.8.3) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/utils@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3)': + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0)) + '@typescript-eslint/scope-manager': 8.44.1 + '@typescript-eslint/types': 8.44.1 + '@typescript-eslint/typescript-estree': 8.44.1(typescript@5.8.3) + eslint: 9.36.0(jiti@2.6.0) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/visitor-keys@8.44.1': + dependencies: + '@typescript-eslint/types': 8.44.1 + eslint-visitor-keys: 4.2.1 + + '@unocss/astro@66.5.2(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))': + dependencies: + '@unocss/core': 66.5.2 + '@unocss/reset': 66.5.2 + '@unocss/vite': 66.5.2(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1)) + optionalDependencies: + vite: rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1) + + '@unocss/cli@66.5.2': + dependencies: + '@jridgewell/remapping': 2.3.5 + '@unocss/config': 66.5.2 + '@unocss/core': 66.5.2 + '@unocss/preset-uno': 66.5.2 + cac: 6.7.14 + chokidar: 3.6.0 + colorette: 2.0.20 + consola: 3.4.2 + magic-string: 0.30.19 + pathe: 2.0.3 + perfect-debounce: 1.0.0 + tinyglobby: 0.2.14 + unplugin-utils: 0.3.0 + + '@unocss/config@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + unconfig: 7.3.3 + + '@unocss/core@0.62.4': {} + + '@unocss/core@66.5.2': {} + + '@unocss/extractor-arbitrary-variants@0.62.4': + dependencies: + '@unocss/core': 0.62.4 + + '@unocss/extractor-arbitrary-variants@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + + '@unocss/inspector@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + '@unocss/rule-utils': 66.5.2 + colorette: 2.0.20 + gzip-size: 6.0.0 + sirv: 3.0.1 + vue-flow-layout: 0.2.0 + + '@unocss/postcss@66.5.2(postcss@8.5.6)': + dependencies: + '@unocss/config': 66.5.2 + '@unocss/core': 66.5.2 + '@unocss/rule-utils': 66.5.2 + css-tree: 3.1.0 + postcss: 8.5.6 + tinyglobby: 0.2.14 + + '@unocss/preset-attributify@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + + '@unocss/preset-icons@66.5.2': + dependencies: + '@iconify/utils': 3.0.1 + '@unocss/core': 66.5.2 + ofetch: 1.4.1 + transitivePeerDependencies: + - supports-color + + '@unocss/preset-mini@0.62.4': + dependencies: + '@unocss/core': 0.62.4 + '@unocss/extractor-arbitrary-variants': 0.62.4 + '@unocss/rule-utils': 0.62.4 + + '@unocss/preset-mini@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + '@unocss/extractor-arbitrary-variants': 66.5.2 + '@unocss/rule-utils': 66.5.2 + + '@unocss/preset-tagify@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + + '@unocss/preset-typography@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + '@unocss/rule-utils': 66.5.2 + + '@unocss/preset-uno@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + '@unocss/preset-wind3': 66.5.2 + + '@unocss/preset-web-fonts@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + ofetch: 1.4.1 + + '@unocss/preset-wind3@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + '@unocss/preset-mini': 66.5.2 + '@unocss/rule-utils': 66.5.2 + + '@unocss/preset-wind4@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + '@unocss/extractor-arbitrary-variants': 66.5.2 + '@unocss/rule-utils': 66.5.2 + + '@unocss/preset-wind@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + '@unocss/preset-wind3': 66.5.2 + + '@unocss/reset@66.5.2': {} + + '@unocss/rule-utils@0.62.4': + dependencies: + '@unocss/core': 0.62.4 + magic-string: 0.30.17 + + '@unocss/rule-utils@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + magic-string: 0.30.19 + + '@unocss/transformer-attributify-jsx@66.5.2': + dependencies: + '@babel/parser': 7.27.7 + '@babel/traverse': 7.27.7 + '@unocss/core': 66.5.2 + transitivePeerDependencies: + - supports-color + + '@unocss/transformer-compile-class@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + + '@unocss/transformer-directives@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + '@unocss/rule-utils': 66.5.2 + css-tree: 3.1.0 + + '@unocss/transformer-variant-group@66.5.2': + dependencies: + '@unocss/core': 66.5.2 + + '@unocss/vite@66.5.2(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))': + dependencies: + '@jridgewell/remapping': 2.3.5 + '@unocss/config': 66.5.2 + '@unocss/core': 66.5.2 + '@unocss/inspector': 66.5.2 + chokidar: 3.6.0 + magic-string: 0.30.19 + pathe: 2.0.3 + tinyglobby: 0.2.14 + unplugin-utils: 0.3.0 + vite: rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1) + + '@v-c/utils@0.0.26(typescript@5.8.3)': + dependencies: + lodash.clonedeep: 4.5.0 + lodash.isequal: 4.5.0 + lodash.merge: 4.6.2 + vue: 3.5.22(typescript@5.8.3) + transitivePeerDependencies: + - typescript + + '@vitejs/plugin-vue-jsx@5.1.1(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.8.3))': + dependencies: + '@babel/core': 7.28.3 + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.3) + '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.3) + '@rolldown/pluginutils': 1.0.0-beta.40 + '@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.28.3) + vite: rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1) + vue: 3.5.22(typescript@5.8.3) + transitivePeerDependencies: + - supports-color + + '@vitejs/plugin-vue@6.0.1(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.8.3))': + dependencies: + '@rolldown/pluginutils': 1.0.0-beta.29 + vite: rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1) + vue: 3.5.22(typescript@5.8.3) + + '@vitest/eslint-plugin@1.3.12(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@20.19.17)(jiti@2.6.0)(jsdom@22.1.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1))': + dependencies: + '@typescript-eslint/scope-manager': 8.44.1 + '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + eslint: 9.36.0(jiti@2.6.0) + optionalDependencies: + typescript: 5.8.3 + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.17)(jiti@2.6.0)(jsdom@22.1.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1) + transitivePeerDependencies: + - supports-color + + '@vitest/expect@3.2.4': + dependencies: + '@types/chai': 5.2.2 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 + chai: 5.3.1 + tinyrainbow: 2.0.0 + + '@vitest/mocker@3.2.4(vite@7.1.2(@types/node@20.19.17)(jiti@2.6.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1))': + dependencies: + '@vitest/spy': 3.2.4 + estree-walker: 3.0.3 + magic-string: 0.30.17 + optionalDependencies: + vite: 7.1.2(@types/node@20.19.17)(jiti@2.6.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1) + + '@vitest/pretty-format@3.2.4': + dependencies: + tinyrainbow: 2.0.0 + + '@vitest/runner@3.2.4': + dependencies: + '@vitest/utils': 3.2.4 + pathe: 2.0.3 + strip-literal: 3.0.0 + + '@vitest/snapshot@3.2.4': + dependencies: + '@vitest/pretty-format': 3.2.4 + magic-string: 0.30.17 + pathe: 2.0.3 + + '@vitest/spy@3.2.4': + dependencies: + tinyspy: 4.0.3 + + '@vitest/utils@3.2.4': + dependencies: + '@vitest/pretty-format': 3.2.4 + loupe: 3.2.0 + tinyrainbow: 2.0.0 + + '@volar/language-core@2.4.23': + dependencies: + '@volar/source-map': 2.4.23 + + '@volar/source-map@2.4.23': {} + + '@volar/typescript@2.4.23': + dependencies: + '@volar/language-core': 2.4.23 + path-browserify: 1.0.1 + vscode-uri: 3.0.8 + + '@vue/babel-helper-vue-transform-on@1.5.0': {} + + '@vue/babel-plugin-jsx@1.5.0(@babel/core@7.28.3)': + dependencies: + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.3) + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.3 + '@babel/types': 7.28.2 + '@vue/babel-helper-vue-transform-on': 1.5.0 + '@vue/babel-plugin-resolve-type': 1.5.0(@babel/core@7.28.3) + '@vue/shared': 3.5.18 + optionalDependencies: + '@babel/core': 7.28.3 + transitivePeerDependencies: + - supports-color + + '@vue/babel-plugin-resolve-type@1.5.0(@babel/core@7.28.3)': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/core': 7.28.3 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/parser': 7.28.3 + '@vue/compiler-sfc': 3.5.18 + transitivePeerDependencies: + - supports-color + + '@vue/compiler-core@3.5.18': + dependencies: + '@babel/parser': 7.28.3 + '@vue/shared': 3.5.18 + entities: 4.5.0 + estree-walker: 2.0.2 + source-map-js: 1.2.1 + + '@vue/compiler-core@3.5.22': + dependencies: + '@babel/parser': 7.28.4 + '@vue/shared': 3.5.22 + entities: 4.5.0 + estree-walker: 2.0.2 + source-map-js: 1.2.1 + + '@vue/compiler-dom@3.5.18': + dependencies: + '@vue/compiler-core': 3.5.18 + '@vue/shared': 3.5.18 + + '@vue/compiler-dom@3.5.22': + dependencies: + '@vue/compiler-core': 3.5.22 + '@vue/shared': 3.5.22 + + '@vue/compiler-sfc@3.5.18': + dependencies: + '@babel/parser': 7.28.3 + '@vue/compiler-core': 3.5.18 + '@vue/compiler-dom': 3.5.18 + '@vue/compiler-ssr': 3.5.18 + '@vue/shared': 3.5.18 + estree-walker: 2.0.2 + magic-string: 0.30.17 + postcss: 8.5.6 + source-map-js: 1.2.1 + + '@vue/compiler-sfc@3.5.22': + dependencies: + '@babel/parser': 7.28.4 + '@vue/compiler-core': 3.5.22 + '@vue/compiler-dom': 3.5.22 + '@vue/compiler-ssr': 3.5.22 + '@vue/shared': 3.5.22 + estree-walker: 2.0.2 + magic-string: 0.30.19 + postcss: 8.5.6 + source-map-js: 1.2.1 + + '@vue/compiler-ssr@3.5.18': + dependencies: + '@vue/compiler-dom': 3.5.18 + '@vue/shared': 3.5.18 + + '@vue/compiler-ssr@3.5.22': + dependencies: + '@vue/compiler-dom': 3.5.22 + '@vue/shared': 3.5.22 + + '@vue/compiler-vue2@2.7.16': + dependencies: + de-indent: 1.0.2 + he: 1.2.0 + + '@vue/devtools-api@6.6.4': {} + + '@vue/language-core@3.0.8(typescript@5.8.3)': + dependencies: + '@volar/language-core': 2.4.23 + '@vue/compiler-dom': 3.5.18 + '@vue/compiler-vue2': 2.7.16 + '@vue/shared': 3.5.18 + alien-signals: 2.0.6 + muggle-string: 0.4.1 + path-browserify: 1.0.1 + picomatch: 4.0.3 + optionalDependencies: + typescript: 5.8.3 + + '@vue/reactivity@3.5.22': + dependencies: + '@vue/shared': 3.5.22 + + '@vue/runtime-core@3.5.22': + dependencies: + '@vue/reactivity': 3.5.22 + '@vue/shared': 3.5.22 + + '@vue/runtime-dom@3.5.22': + dependencies: + '@vue/reactivity': 3.5.22 + '@vue/runtime-core': 3.5.22 + '@vue/shared': 3.5.22 + csstype: 3.1.3 + + '@vue/server-renderer@3.5.22(vue@3.5.22(typescript@5.8.3))': + dependencies: + '@vue/compiler-ssr': 3.5.22 + '@vue/shared': 3.5.22 + vue: 3.5.22(typescript@5.8.3) + + '@vue/shared@3.5.18': {} + + '@vue/shared@3.5.22': {} + + '@vue/test-utils@2.4.6': + dependencies: + js-beautify: 1.15.1 + vue-component-type-helpers: 2.2.0 + + '@vueuse/core@10.11.1(vue@3.5.22(typescript@5.8.3))': + dependencies: + '@types/web-bluetooth': 0.0.20 + '@vueuse/metadata': 10.11.1 + '@vueuse/shared': 10.11.1(vue@3.5.22(typescript@5.8.3)) + vue-demi: 0.14.10(vue@3.5.22(typescript@5.8.3)) + transitivePeerDependencies: + - '@vue/composition-api' + - vue + + '@vueuse/metadata@10.11.1': {} + + '@vueuse/shared@10.11.1(vue@3.5.22(typescript@5.8.3))': + dependencies: + vue-demi: 0.14.10(vue@3.5.22(typescript@5.8.3)) + transitivePeerDependencies: + - '@vue/composition-api' + - vue + + '@webgpu/types@0.1.52': {} + + JSONStream@1.3.5: + dependencies: + jsonparse: 1.3.1 + through: 2.3.8 + + abab@2.0.6: {} + + abbrev@2.0.0: {} + + acorn-jsx@5.3.2(acorn@8.15.0): + dependencies: + acorn: 8.15.0 + + acorn-walk@8.3.4: + dependencies: + acorn: 8.14.0 + + acorn@8.14.0: {} + + acorn@8.15.0: {} + + agent-base@6.0.2: + dependencies: + debug: 4.4.0 + transitivePeerDependencies: + - supports-color + + agent-base@7.1.3: {} + + ajv@6.12.6: + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + + ajv@8.17.1: + dependencies: + fast-deep-equal: 3.1.3 + fast-uri: 3.0.3 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + + alien-signals@2.0.6: {} + + align-text@0.1.4: + dependencies: + kind-of: 3.2.2 + longest: 1.0.1 + repeat-string: 1.6.1 + + amdefine@1.0.1: {} + + ansi-escapes@5.0.0: + dependencies: + type-fest: 1.4.0 + + ansi-regex@2.1.1: {} + + ansi-regex@5.0.1: {} + + ansi-regex@6.1.0: {} + + ansi-styles@2.2.1: {} + + ansi-styles@3.2.1: + dependencies: + color-convert: 1.9.3 + + ansi-styles@4.3.0: + dependencies: + color-convert: 2.0.1 + + ansi-styles@6.2.1: {} + + ansis@4.1.0: {} + + ant-design-vue@4.2.6(vue@3.5.22(typescript@5.8.3)): + dependencies: + '@ant-design/colors': 6.0.0 + '@ant-design/icons-vue': 7.0.1(vue@3.5.22(typescript@5.8.3)) + '@babel/runtime': 7.26.0 + '@ctrl/tinycolor': 3.6.1 + '@emotion/hash': 0.9.2 + '@emotion/unitless': 0.8.1 + '@simonwep/pickr': 1.8.2 + array-tree-filter: 2.1.0 + async-validator: 4.2.5 + csstype: 3.1.3 + dayjs: 1.11.18 + dom-align: 1.12.4 + dom-scroll-into-view: 2.0.1 + lodash: 4.17.21 + lodash-es: 4.17.21 + resize-observer-polyfill: 1.5.1 + scroll-into-view-if-needed: 2.2.31 + shallow-equal: 1.2.1 + stylis: 4.3.4 + throttle-debounce: 5.0.2 + vue: 3.5.22(typescript@5.8.3) + vue-types: 3.0.2(vue@3.5.22(typescript@5.8.3)) + warning: 4.0.3 + + antdv-component-resolver@1.0.8(unplugin-vue-components@29.1.0(@babel/parser@7.28.4)(vue@3.5.22(typescript@5.8.3))): + dependencies: + unplugin-vue-components: 29.1.0(@babel/parser@7.28.4)(vue@3.5.22(typescript@5.8.3)) + + antdv-style@0.0.1-beta.4(ant-design-vue@4.2.6(vue@3.5.22(typescript@5.8.3)))(vue@3.5.22(typescript@5.8.3)): + dependencies: + '@babel/runtime': 7.26.0 + '@emotion/cache': 11.14.0 + '@emotion/css': 11.13.5 + '@emotion/serialize': 1.3.3 + '@emotion/server': 11.11.0(@emotion/css@11.13.5) + '@emotion/utils': 1.4.2 + '@vueuse/core': 10.11.1(vue@3.5.22(typescript@5.8.3)) + ant-design-vue: 4.2.6(vue@3.5.22(typescript@5.8.3)) + vue: 3.5.22(typescript@5.8.3) + transitivePeerDependencies: + - '@vue/composition-api' + - supports-color + + anymatch@3.1.3: + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + + are-docs-informative@0.0.2: {} + + arg@4.1.3: {} + + argparse@2.0.1: {} + + arr-union@3.1.0: {} + + array-back@3.1.0: {} + + array-back@4.0.2: {} + + array-buffer-byte-length@1.0.2: + dependencies: + call-bound: 1.0.3 + is-array-buffer: 3.0.5 + + array-ify@1.0.0: {} + + array-tree-filter@2.1.0: {} + + arraybuffer.prototype.slice@1.0.4: + dependencies: + array-buffer-byte-length: 1.0.2 + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.8 + es-errors: 1.3.0 + get-intrinsic: 1.2.6 + is-array-buffer: 3.0.5 + + arrify@1.0.1: {} + + as-number@1.0.0: {} + + assertion-error@2.0.1: {} + + assign-symbols@1.0.0: {} + + ast-kit@2.1.2: + dependencies: + '@babel/parser': 7.28.3 + pathe: 2.0.3 + + async-validator@4.2.5: {} + + async@3.2.6: {} + + asynckit@0.4.0: {} + + available-typed-arrays@1.0.7: + dependencies: + possible-typed-array-names: 1.0.0 + + axios@1.12.2: + dependencies: + follow-redirects: 1.15.9 + form-data: 4.0.4 + proxy-from-env: 1.1.0 + transitivePeerDependencies: + - debug + + babel-plugin-macros@3.1.0: + dependencies: + '@babel/runtime': 7.26.0 + cosmiconfig: 7.1.0 + resolve: 1.22.10 + + balanced-match@1.0.2: {} + + baseline-browser-mapping@2.8.6: {} + + batch-processor@1.0.0: {} + + binary-extensions@2.3.0: {} + + birpc@2.5.0: {} + + boolbase@1.0.0: {} + + brace-expansion@1.1.11: + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + + brace-expansion@2.0.1: + dependencies: + balanced-match: 1.0.2 + + braces@3.0.3: + dependencies: + fill-range: 7.1.1 + + browserslist@4.24.3: + dependencies: + caniuse-lite: 1.0.30001690 + electron-to-chromium: 1.5.76 + node-releases: 2.0.19 + update-browserslist-db: 1.1.1(browserslist@4.24.3) + + browserslist@4.26.2: + dependencies: + baseline-browser-mapping: 2.8.6 + caniuse-lite: 1.0.30001743 + electron-to-chromium: 1.5.223 + node-releases: 2.0.21 + update-browserslist-db: 1.1.3(browserslist@4.26.2) + + buffer-from@0.1.2: {} + + buffer-from@1.1.2: {} + + builtin-modules@5.0.0: {} + + bundle-name@4.1.0: + dependencies: + run-applescript: 7.0.0 + + bytewise-core@1.2.3: + dependencies: + typewise-core: 1.2.0 + + bytewise@1.1.0: + dependencies: + bytewise-core: 1.2.3 + typewise: 1.0.3 + + c12@1.11.2(magicast@0.3.5): + dependencies: + chokidar: 3.6.0 + confbox: 0.1.8 + defu: 6.1.4 + dotenv: 16.4.7 + giget: 1.2.3 + jiti: 1.21.7 + mlly: 1.7.4 + ohash: 1.1.4 + pathe: 1.1.2 + perfect-debounce: 1.0.0 + pkg-types: 1.3.0 + rc9: 2.1.2 + optionalDependencies: + magicast: 0.3.5 + + cac@6.7.14: {} + + call-bind-apply-helpers@1.0.1: + dependencies: + es-errors: 1.3.0 + function-bind: 1.1.2 + + call-bind@1.0.8: + dependencies: + call-bind-apply-helpers: 1.0.1 + es-define-property: 1.0.1 + get-intrinsic: 1.2.6 + set-function-length: 1.2.2 + + call-bound@1.0.3: + dependencies: + call-bind-apply-helpers: 1.0.1 + get-intrinsic: 1.2.6 + + callsites@3.1.0: {} + + camelcase-keys@6.2.2: + dependencies: + camelcase: 5.3.1 + map-obj: 4.3.0 + quick-lru: 4.0.1 + + camelcase@1.2.1: {} + + camelcase@5.3.1: {} + + caniuse-lite@1.0.30001690: {} + + caniuse-lite@1.0.30001743: {} + + ccount@2.0.1: {} + + center-align@0.1.3: + dependencies: + align-text: 0.1.4 + lazy-cache: 1.0.4 + + chai@5.3.1: + dependencies: + assertion-error: 2.0.1 + check-error: 2.1.1 + deep-eql: 5.0.2 + loupe: 3.2.0 + pathval: 2.0.1 + + chalk@1.1.3: + dependencies: + ansi-styles: 2.2.1 + escape-string-regexp: 1.0.5 + has-ansi: 2.0.0 + strip-ansi: 3.0.1 + supports-color: 2.0.0 + + chalk@2.4.2: + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + + chalk@4.1.2: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + chalk@5.3.0: {} + + chalk@5.6.0: {} + + change-case@5.4.4: {} + + changelogen@0.5.7(magicast@0.3.5): + dependencies: + c12: 1.11.2(magicast@0.3.5) + colorette: 2.0.20 + consola: 3.3.3 + convert-gitmoji: 0.1.5 + mri: 1.2.0 + node-fetch-native: 1.6.4 + ofetch: 1.4.1 + open: 10.1.0 + pathe: 1.1.2 + pkg-types: 1.3.0 + scule: 1.3.0 + semver: 7.6.3 + std-env: 3.8.0 + yaml: 2.6.1 + transitivePeerDependencies: + - magicast + + character-entities@2.0.2: {} + + check-error@2.1.1: {} + + chokidar@3.6.0: + dependencies: + anymatch: 3.1.3 + braces: 3.0.3 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.3 + + chokidar@4.0.3: + dependencies: + readdirp: 4.0.2 + + chownr@2.0.0: {} + + ci-info@4.3.0: {} + + citty@0.1.6: + dependencies: + consola: 3.4.2 + + clean-regexp@1.0.0: + dependencies: + escape-string-regexp: 1.0.5 + + cli-cursor@4.0.0: + dependencies: + restore-cursor: 4.0.0 + + cli-truncate@3.1.0: + dependencies: + slice-ansi: 5.0.0 + string-width: 5.1.2 + + cliui@2.1.0: + dependencies: + center-align: 0.1.3 + right-align: 0.1.3 + wordwrap: 0.0.2 + + cliui@8.0.1: + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + + color-convert@1.9.3: + dependencies: + color-name: 1.1.3 + + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 + + color-name@1.1.3: {} + + color-name@1.1.4: {} + + colorette@2.0.20: {} + + combined-stream@1.0.8: + dependencies: + delayed-stream: 1.0.0 + + command-line-args@5.2.1: + dependencies: + array-back: 3.1.0 + find-replace: 3.0.0 + lodash.camelcase: 4.3.0 + typical: 4.0.0 + + command-line-usage@6.1.3: + dependencies: + array-back: 4.0.2 + chalk: 2.4.2 + table-layout: 1.0.2 + typical: 5.2.0 + + commander@10.0.1: {} + + commander@11.0.0: {} + + commander@2.20.3: {} + + comment-parser@1.4.1: {} + + compare-func@2.0.0: + dependencies: + array-ify: 1.0.0 + dot-prop: 5.3.0 + + compute-scroll-into-view@1.0.20: {} + + concat-map@0.0.1: {} + + confbox@0.1.8: {} + + confbox@0.2.2: {} + + config-chain@1.1.13: + dependencies: + ini: 1.3.8 + proto-list: 1.2.4 + + consola@3.3.3: {} + + consola@3.4.2: {} + + contour_plot@0.0.1: {} + + conventional-changelog-angular@7.0.0: + dependencies: + compare-func: 2.0.0 + + conventional-changelog-conventionalcommits@7.0.2: + dependencies: + compare-func: 2.0.0 + + conventional-commits-parser@5.0.0: + dependencies: + JSONStream: 1.3.5 + is-text-path: 2.0.0 + meow: 12.1.1 + split2: 4.2.0 + + convert-gitmoji@0.1.5: {} + + convert-source-map@1.9.0: {} + + convert-source-map@2.0.0: {} + + cookie-es@2.0.0: {} + + copy-anything@2.0.6: + dependencies: + is-what: 3.14.1 + + core-js-compat@3.45.1: + dependencies: + browserslist: 4.26.2 + + core-js@3.39.0: {} + + core-util-is@1.0.3: {} + + cosmiconfig-typescript-loader@5.1.0(@types/node@20.19.17)(cosmiconfig@8.3.6(typescript@5.8.3))(typescript@5.8.3): + dependencies: + '@types/node': 20.19.17 + cosmiconfig: 8.3.6(typescript@5.8.3) + jiti: 1.21.7 + typescript: 5.8.3 + + cosmiconfig@7.1.0: + dependencies: + '@types/parse-json': 4.0.2 + import-fresh: 3.3.0 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.2 + + cosmiconfig@8.3.6(typescript@5.8.3): + dependencies: + import-fresh: 3.3.0 + js-yaml: 4.1.0 + parse-json: 5.2.0 + path-type: 4.0.0 + optionalDependencies: + typescript: 5.8.3 + + create-require@1.1.1: {} + + cross-env@7.0.3: + dependencies: + cross-spawn: 7.0.6 + + cross-spawn@6.0.6: + dependencies: + nice-try: 1.0.5 + path-key: 2.0.1 + semver: 5.7.2 + shebang-command: 1.2.0 + which: 1.3.1 + + cross-spawn@7.0.6: + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + + crypto-js@4.2.0: {} + + css-tree@3.1.0: + dependencies: + mdn-data: 2.12.2 + source-map-js: 1.2.1 + + csscolorparser@1.0.3: {} + + cssesc@3.0.0: {} + + cssstyle@3.0.0: + dependencies: + rrweb-cssom: 0.6.0 + + cssstyle@4.1.0: + dependencies: + rrweb-cssom: 0.7.1 + + csstype@3.1.3: {} + + d3-array@1.2.4: {} + + d3-array@2.12.1: + dependencies: + internmap: 1.0.1 + + d3-collection@1.0.7: {} + + d3-color@1.4.1: {} + + d3-color@3.1.0: {} + + d3-dsv@1.2.0: + dependencies: + commander: 2.20.3 + iconv-lite: 0.4.24 + rw: 1.3.3 + + d3-ease@1.0.7: {} + + d3-format@1.4.5: {} + + d3-hexbin@0.2.2: {} + + d3-hierarchy@2.0.0: {} + + d3-interpolate@1.4.0: + dependencies: + d3-color: 1.4.1 + + d3-interpolate@3.0.1: + dependencies: + d3-color: 3.1.0 + + d3-regression@1.3.10: {} + + d3-scale@2.2.2: + dependencies: + d3-array: 1.2.4 + d3-collection: 1.0.7 + d3-format: 1.4.5 + d3-interpolate: 1.4.0 + d3-time: 1.1.0 + d3-time-format: 2.3.0 + + d3-time-format@2.3.0: + dependencies: + d3-time: 1.1.0 + + d3-time@1.1.0: {} + + d3-timer@1.0.10: {} + + dargs@7.0.0: {} + + data-urls@4.0.0: + dependencies: + abab: 2.0.6 + whatwg-mimetype: 3.0.0 + whatwg-url: 12.0.1 + + data-urls@5.0.0: + dependencies: + whatwg-mimetype: 4.0.0 + whatwg-url: 14.1.0 + + data-view-buffer@1.0.2: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + data-view-byte-length@1.0.2: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + data-view-byte-offset@1.0.1: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + dayjs@1.11.18: {} + + de-indent@1.0.2: {} + + debug@4.3.4: + dependencies: + ms: 2.1.2 + + debug@4.4.0: + dependencies: + ms: 2.1.3 + + debug@4.4.1: + dependencies: + ms: 2.1.3 + + debug@4.4.3: + dependencies: + ms: 2.1.3 + + decamelize-keys@1.1.1: + dependencies: + decamelize: 1.2.0 + map-obj: 1.0.1 + + decamelize@1.2.0: {} + + decimal.js@10.4.3: {} + + decode-named-character-reference@1.2.0: + dependencies: + character-entities: 2.0.2 + + deep-eql@5.0.2: {} + + deep-equal@1.1.2: + dependencies: + is-arguments: 1.2.0 + is-date-object: 1.1.0 + is-regex: 1.2.1 + object-is: 1.1.6 + object-keys: 1.1.1 + regexp.prototype.flags: 1.5.3 + + deep-extend@0.6.0: {} + + deep-is@0.1.4: {} + + default-browser-id@5.0.0: {} + + default-browser@5.2.1: + dependencies: + bundle-name: 4.1.0 + default-browser-id: 5.0.0 + + define-data-property@1.1.4: + dependencies: + es-define-property: 1.0.1 + es-errors: 1.3.0 + gopd: 1.2.0 + + define-lazy-prop@3.0.0: {} + + define-properties@1.2.1: + dependencies: + define-data-property: 1.1.4 + has-property-descriptors: 1.0.2 + object-keys: 1.1.1 + + defined@1.0.1: {} + + defu@6.1.4: {} + + delayed-stream@1.0.0: {} + + dequal@2.0.3: {} + + destr@2.0.3: {} + + detect-browser@5.3.0: {} + + detect-libc@2.0.4: {} + + devlop@1.1.0: + dependencies: + dequal: 2.0.3 + + diff@4.0.2: {} + + diff@8.0.2: {} + + directory-tree@3.5.2: + dependencies: + command-line-args: 5.2.1 + command-line-usage: 6.1.3 + + dom-align@1.12.4: {} + + dom-scroll-into-view@2.0.1: {} + + domexception@4.0.0: + dependencies: + webidl-conversions: 7.0.0 + + dot-prop@5.3.0: + dependencies: + is-obj: 2.0.0 + + dotenv@16.4.7: {} + + dotignore@0.1.2: + dependencies: + minimatch: 3.1.2 + + dts-resolver@2.1.1: {} + + dunder-proto@1.0.1: + dependencies: + call-bind-apply-helpers: 1.0.1 + es-errors: 1.3.0 + gopd: 1.2.0 + + duplexer2@0.1.4: + dependencies: + readable-stream: 2.3.8 + + duplexer@0.1.2: {} + + earcut@2.2.4: {} + + eastasianwidth@0.2.0: {} + + echarts@6.0.0: + dependencies: + tslib: 2.3.0 + zrender: 6.0.0 + + editorconfig@1.0.4: + dependencies: + '@one-ini/wasm': 0.1.1 + commander: 10.0.1 + minimatch: 9.0.1 + semver: 7.6.3 + + electron-to-chromium@1.5.223: {} + + electron-to-chromium@1.5.76: {} + + element-resize-detector@1.2.4: + dependencies: + batch-processor: 1.0.0 + + emoji-regex@8.0.0: {} + + emoji-regex@9.2.2: {} + + empathic@2.0.0: {} + + enhanced-resolve@5.18.0: + dependencies: + graceful-fs: 4.2.11 + tapable: 2.2.1 + + entities@4.5.0: {} + + errno@0.1.8: + dependencies: + prr: 1.0.1 + optional: true + + error-ex@1.3.2: + dependencies: + is-arrayish: 0.2.1 + + es-abstract@1.23.8: + dependencies: + array-buffer-byte-length: 1.0.2 + arraybuffer.prototype.slice: 1.0.4 + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.3 + data-view-buffer: 1.0.2 + data-view-byte-length: 1.0.2 + data-view-byte-offset: 1.0.1 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.0.0 + es-set-tostringtag: 2.0.3 + es-to-primitive: 1.3.0 + function.prototype.name: 1.1.8 + get-intrinsic: 1.2.6 + get-symbol-description: 1.1.0 + globalthis: 1.0.4 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + has-proto: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + internal-slot: 1.1.0 + is-array-buffer: 3.0.5 + is-callable: 1.2.7 + is-data-view: 1.0.2 + is-regex: 1.2.1 + is-shared-array-buffer: 1.0.4 + is-string: 1.1.1 + is-typed-array: 1.1.15 + is-weakref: 1.1.0 + math-intrinsics: 1.1.0 + object-inspect: 1.13.3 + object-keys: 1.1.1 + object.assign: 4.1.7 + own-keys: 1.0.1 + regexp.prototype.flags: 1.5.3 + safe-array-concat: 1.1.3 + safe-push-apply: 1.0.0 + safe-regex-test: 1.1.0 + string.prototype.trim: 1.2.10 + string.prototype.trimend: 1.0.9 + string.prototype.trimstart: 1.0.8 + typed-array-buffer: 1.0.3 + typed-array-byte-length: 1.0.3 + typed-array-byte-offset: 1.0.4 + typed-array-length: 1.0.7 + unbox-primitive: 1.1.0 + which-typed-array: 1.1.18 + + es-define-property@1.0.1: {} + + es-errors@1.3.0: {} + + es-module-lexer@1.7.0: {} + + es-object-atoms@1.0.0: + dependencies: + es-errors: 1.3.0 + + es-set-tostringtag@2.0.3: + dependencies: + get-intrinsic: 1.2.6 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + es-set-tostringtag@2.1.0: + dependencies: + es-errors: 1.3.0 + get-intrinsic: 1.2.6 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + es-to-primitive@1.3.0: + dependencies: + is-callable: 1.2.7 + is-date-object: 1.1.0 + is-symbol: 1.1.1 + + esbuild@0.18.20: + optionalDependencies: + '@esbuild/android-arm': 0.18.20 + '@esbuild/android-arm64': 0.18.20 + '@esbuild/android-x64': 0.18.20 + '@esbuild/darwin-arm64': 0.18.20 + '@esbuild/darwin-x64': 0.18.20 + '@esbuild/freebsd-arm64': 0.18.20 + '@esbuild/freebsd-x64': 0.18.20 + '@esbuild/linux-arm': 0.18.20 + '@esbuild/linux-arm64': 0.18.20 + '@esbuild/linux-ia32': 0.18.20 + '@esbuild/linux-loong64': 0.18.20 + '@esbuild/linux-mips64el': 0.18.20 + '@esbuild/linux-ppc64': 0.18.20 + '@esbuild/linux-riscv64': 0.18.20 + '@esbuild/linux-s390x': 0.18.20 + '@esbuild/linux-x64': 0.18.20 + '@esbuild/netbsd-x64': 0.18.20 + '@esbuild/openbsd-x64': 0.18.20 + '@esbuild/sunos-x64': 0.18.20 + '@esbuild/win32-arm64': 0.18.20 + '@esbuild/win32-ia32': 0.18.20 + '@esbuild/win32-x64': 0.18.20 + + esbuild@0.25.10: + optionalDependencies: + '@esbuild/aix-ppc64': 0.25.10 + '@esbuild/android-arm': 0.25.10 + '@esbuild/android-arm64': 0.25.10 + '@esbuild/android-x64': 0.25.10 + '@esbuild/darwin-arm64': 0.25.10 + '@esbuild/darwin-x64': 0.25.10 + '@esbuild/freebsd-arm64': 0.25.10 + '@esbuild/freebsd-x64': 0.25.10 + '@esbuild/linux-arm': 0.25.10 + '@esbuild/linux-arm64': 0.25.10 + '@esbuild/linux-ia32': 0.25.10 + '@esbuild/linux-loong64': 0.25.10 + '@esbuild/linux-mips64el': 0.25.10 + '@esbuild/linux-ppc64': 0.25.10 + '@esbuild/linux-riscv64': 0.25.10 + '@esbuild/linux-s390x': 0.25.10 + '@esbuild/linux-x64': 0.25.10 + '@esbuild/netbsd-arm64': 0.25.10 + '@esbuild/netbsd-x64': 0.25.10 + '@esbuild/openbsd-arm64': 0.25.10 + '@esbuild/openbsd-x64': 0.25.10 + '@esbuild/openharmony-arm64': 0.25.10 + '@esbuild/sunos-x64': 0.25.10 + '@esbuild/win32-arm64': 0.25.10 + '@esbuild/win32-ia32': 0.25.10 + '@esbuild/win32-x64': 0.25.10 + + escalade@3.2.0: {} + + escape-string-regexp@1.0.5: {} + + escape-string-regexp@4.0.0: {} + + escape-string-regexp@5.0.0: {} + + eslint-compat-utils@0.5.1(eslint@9.36.0(jiti@2.6.0)): + dependencies: + eslint: 9.36.0(jiti@2.6.0) + semver: 7.7.2 + + eslint-compat-utils@0.6.4(eslint@9.36.0(jiti@2.6.0)): + dependencies: + eslint: 9.36.0(jiti@2.6.0) + semver: 7.7.2 + + eslint-config-flat-gitignore@2.1.0(eslint@9.36.0(jiti@2.6.0)): + dependencies: + '@eslint/compat': 1.4.0(eslint@9.36.0(jiti@2.6.0)) + eslint: 9.36.0(jiti@2.6.0) + + eslint-flat-config-utils@2.1.4: + dependencies: + pathe: 2.0.3 + + eslint-formatting-reporter@0.0.0(eslint@9.36.0(jiti@2.6.0)): + dependencies: + eslint: 9.36.0(jiti@2.6.0) + prettier-linter-helpers: 1.0.0 + + eslint-json-compat-utils@0.2.1(eslint@9.36.0(jiti@2.6.0))(jsonc-eslint-parser@2.4.0): + dependencies: + eslint: 9.36.0(jiti@2.6.0) + esquery: 1.6.0 + jsonc-eslint-parser: 2.4.0 + + eslint-merge-processors@2.0.0(eslint@9.36.0(jiti@2.6.0)): + dependencies: + eslint: 9.36.0(jiti@2.6.0) + + eslint-parser-plain@0.1.1: {} + + eslint-plugin-antfu@3.1.1(eslint@9.36.0(jiti@2.6.0)): + dependencies: + eslint: 9.36.0(jiti@2.6.0) + + eslint-plugin-command@3.3.1(eslint@9.36.0(jiti@2.6.0)): + dependencies: + '@es-joy/jsdoccomment': 0.50.2 + eslint: 9.36.0(jiti@2.6.0) + + eslint-plugin-es-x@7.8.0(eslint@9.36.0(jiti@2.6.0)): + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0)) + '@eslint-community/regexpp': 4.12.1 + eslint: 9.36.0(jiti@2.6.0) + eslint-compat-utils: 0.5.1(eslint@9.36.0(jiti@2.6.0)) + + eslint-plugin-format@1.0.2(eslint@9.36.0(jiti@2.6.0)): + dependencies: + '@dprint/formatter': 0.3.0 + '@dprint/markdown': 0.17.8 + '@dprint/toml': 0.6.4 + eslint: 9.36.0(jiti@2.6.0) + eslint-formatting-reporter: 0.0.0(eslint@9.36.0(jiti@2.6.0)) + eslint-parser-plain: 0.1.1 + prettier: 3.6.2 + synckit: 0.9.3 + + eslint-plugin-import-lite@0.3.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3): + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0)) + '@typescript-eslint/types': 8.44.1 + eslint: 9.36.0(jiti@2.6.0) + optionalDependencies: + typescript: 5.8.3 + + eslint-plugin-jsdoc@59.1.0(eslint@9.36.0(jiti@2.6.0)): + dependencies: + '@es-joy/jsdoccomment': 0.58.0 + are-docs-informative: 0.0.2 + comment-parser: 1.4.1 + debug: 4.4.3 + escape-string-regexp: 4.0.0 + eslint: 9.36.0(jiti@2.6.0) + espree: 10.4.0 + esquery: 1.6.0 + object-deep-merge: 1.0.5 + parse-imports-exports: 0.2.4 + semver: 7.7.2 + spdx-expression-parse: 4.0.0 + transitivePeerDependencies: + - supports-color + + eslint-plugin-jsonc@2.20.1(eslint@9.36.0(jiti@2.6.0)): + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0)) + eslint: 9.36.0(jiti@2.6.0) + eslint-compat-utils: 0.6.4(eslint@9.36.0(jiti@2.6.0)) + eslint-json-compat-utils: 0.2.1(eslint@9.36.0(jiti@2.6.0))(jsonc-eslint-parser@2.4.0) + espree: 10.4.0 + graphemer: 1.4.0 + jsonc-eslint-parser: 2.4.0 + natural-compare: 1.4.0 + synckit: 0.6.2 + transitivePeerDependencies: + - '@eslint/json' + + eslint-plugin-n@17.23.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3): + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0)) + enhanced-resolve: 5.18.0 + eslint: 9.36.0(jiti@2.6.0) + eslint-plugin-es-x: 7.8.0(eslint@9.36.0(jiti@2.6.0)) + get-tsconfig: 4.10.1 + globals: 15.15.0 + globrex: 0.1.2 + ignore: 5.3.2 + semver: 7.7.2 + ts-declaration-location: 1.0.7(typescript@5.8.3) + transitivePeerDependencies: + - typescript + + eslint-plugin-no-only-tests@3.3.0: {} + + eslint-plugin-perfectionist@4.15.0(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3): + dependencies: + '@typescript-eslint/types': 8.44.1 + '@typescript-eslint/utils': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + eslint: 9.36.0(jiti@2.6.0) + natural-orderby: 5.0.0 + transitivePeerDependencies: + - supports-color + - typescript + + eslint-plugin-pnpm@1.1.2(eslint@9.36.0(jiti@2.6.0)): + dependencies: + empathic: 2.0.0 + eslint: 9.36.0(jiti@2.6.0) + jsonc-eslint-parser: 2.4.1 + pathe: 2.0.3 + pnpm-workspace-yaml: 1.1.2 + tinyglobby: 0.2.15 + yaml-eslint-parser: 1.3.0 + + eslint-plugin-regexp@2.10.0(eslint@9.36.0(jiti@2.6.0)): + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0)) + '@eslint-community/regexpp': 4.12.1 + comment-parser: 1.4.1 + eslint: 9.36.0(jiti@2.6.0) + jsdoc-type-pratt-parser: 4.1.0 + refa: 0.12.1 + regexp-ast-analysis: 0.7.1 + scslre: 0.3.0 + + eslint-plugin-toml@0.12.0(eslint@9.36.0(jiti@2.6.0)): + dependencies: + debug: 4.4.3 + eslint: 9.36.0(jiti@2.6.0) + eslint-compat-utils: 0.6.4(eslint@9.36.0(jiti@2.6.0)) + lodash: 4.17.21 + toml-eslint-parser: 0.10.0 + transitivePeerDependencies: + - supports-color + + eslint-plugin-unicorn@61.0.2(eslint@9.36.0(jiti@2.6.0)): + dependencies: + '@babel/helper-validator-identifier': 7.27.1 + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0)) + '@eslint/plugin-kit': 0.3.5 + change-case: 5.4.4 + ci-info: 4.3.0 + clean-regexp: 1.0.0 + core-js-compat: 3.45.1 + eslint: 9.36.0(jiti@2.6.0) + esquery: 1.6.0 + find-up-simple: 1.0.1 + globals: 16.4.0 + indent-string: 5.0.0 + is-builtin-module: 5.0.0 + jsesc: 3.1.0 + pluralize: 8.0.0 + regexp-tree: 0.1.27 + regjsparser: 0.12.0 + semver: 7.7.2 + strip-indent: 4.1.0 + + eslint-plugin-unused-imports@4.2.0(@typescript-eslint/eslint-plugin@8.44.1(@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3))(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3))(eslint@9.36.0(jiti@2.6.0)): + dependencies: + eslint: 9.36.0(jiti@2.6.0) + optionalDependencies: + '@typescript-eslint/eslint-plugin': 8.44.1(@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3))(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + + eslint-plugin-vue@10.5.0(@stylistic/eslint-plugin@5.4.0(eslint@9.36.0(jiti@2.6.0)))(@typescript-eslint/parser@8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3))(eslint@9.36.0(jiti@2.6.0))(vue-eslint-parser@10.2.0(eslint@9.36.0(jiti@2.6.0))): + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0)) + eslint: 9.36.0(jiti@2.6.0) + natural-compare: 1.4.0 + nth-check: 2.1.1 + postcss-selector-parser: 6.1.2 + semver: 7.7.2 + vue-eslint-parser: 10.2.0(eslint@9.36.0(jiti@2.6.0)) + xml-name-validator: 4.0.0 + optionalDependencies: + '@stylistic/eslint-plugin': 5.4.0(eslint@9.36.0(jiti@2.6.0)) + '@typescript-eslint/parser': 8.44.1(eslint@9.36.0(jiti@2.6.0))(typescript@5.8.3) + + eslint-plugin-yml@1.18.0(eslint@9.36.0(jiti@2.6.0)): + dependencies: + debug: 4.4.3 + escape-string-regexp: 4.0.0 + eslint: 9.36.0(jiti@2.6.0) + eslint-compat-utils: 0.6.4(eslint@9.36.0(jiti@2.6.0)) + natural-compare: 1.4.0 + yaml-eslint-parser: 1.3.0 + transitivePeerDependencies: + - supports-color + + eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.22)(eslint@9.36.0(jiti@2.6.0)): + dependencies: + '@vue/compiler-sfc': 3.5.22 + eslint: 9.36.0(jiti@2.6.0) + + eslint-scope@8.4.0: + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + + eslint-visitor-keys@3.4.3: {} + + eslint-visitor-keys@4.2.1: {} + + eslint@9.36.0(jiti@2.6.0): + dependencies: + '@eslint-community/eslint-utils': 4.9.0(eslint@9.36.0(jiti@2.6.0)) + '@eslint-community/regexpp': 4.12.1 + '@eslint/config-array': 0.21.0 + '@eslint/config-helpers': 0.3.1 + '@eslint/core': 0.15.2 + '@eslint/eslintrc': 3.3.1 + '@eslint/js': 9.36.0 + '@eslint/plugin-kit': 0.3.5 + '@humanfs/node': 0.16.6 + '@humanwhocodes/module-importer': 1.0.1 + '@humanwhocodes/retry': 0.4.3 + '@types/estree': 1.0.8 + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.6 + debug: 4.4.1 + escape-string-regexp: 4.0.0 + eslint-scope: 8.4.0 + eslint-visitor-keys: 4.2.1 + espree: 10.4.0 + esquery: 1.6.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 8.0.0 + find-up: 5.0.0 + glob-parent: 6.0.2 + ignore: 5.3.2 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + json-stable-stringify-without-jsonify: 1.0.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.4 + optionalDependencies: + jiti: 2.6.0 + transitivePeerDependencies: + - supports-color + + esno@0.17.0: + dependencies: + tsx: 3.14.0 + + espree@10.4.0: + dependencies: + acorn: 8.15.0 + acorn-jsx: 5.3.2(acorn@8.15.0) + eslint-visitor-keys: 4.2.1 + + espree@9.6.1: + dependencies: + acorn: 8.15.0 + acorn-jsx: 5.3.2(acorn@8.15.0) + eslint-visitor-keys: 3.4.3 + + esquery@1.6.0: + dependencies: + estraverse: 5.3.0 + + esrecurse@4.3.0: + dependencies: + estraverse: 5.3.0 + + estraverse@5.3.0: {} + + estree-walker@2.0.2: {} + + estree-walker@3.0.3: + dependencies: + '@types/estree': 1.0.6 + + esutils@2.0.3: {} + + eventemitter3@4.0.7: {} + + eventemitter3@5.0.1: {} + + execa@5.1.1: + dependencies: + cross-spawn: 7.0.6 + get-stream: 6.0.1 + human-signals: 2.1.0 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + + execa@7.2.0: + dependencies: + cross-spawn: 7.0.6 + get-stream: 6.0.1 + human-signals: 4.3.1 + is-stream: 3.0.0 + merge-stream: 2.0.0 + npm-run-path: 5.3.0 + onetime: 6.0.0 + signal-exit: 3.0.7 + strip-final-newline: 3.0.0 + + execa@8.0.1: + dependencies: + cross-spawn: 7.0.6 + get-stream: 8.0.1 + human-signals: 5.0.0 + is-stream: 3.0.0 + merge-stream: 2.0.0 + npm-run-path: 5.3.0 + onetime: 6.0.0 + signal-exit: 4.1.0 + strip-final-newline: 3.0.0 + + expect-type@1.2.2: {} + + exsolve@1.0.7: {} + + extend-shallow@2.0.1: + dependencies: + is-extendable: 0.1.1 + + extend-shallow@3.0.2: + dependencies: + assign-symbols: 1.0.0 + is-extendable: 1.0.1 + + extrude-polyline@1.0.6: + dependencies: + as-number: 1.0.0 + gl-vec2: 1.3.0 + polyline-miter-util: 1.0.1 + + fast-deep-equal@3.1.3: {} + + fast-diff@1.3.0: {} + + fast-glob@3.3.2: + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.8 + + fast-json-stable-stringify@2.1.0: {} + + fast-levenshtein@2.0.6: {} + + fast-uri@3.0.3: {} + + fastq@1.18.0: + dependencies: + reusify: 1.0.4 + + fault@2.0.1: + dependencies: + format: 0.2.2 + + fdir@6.5.0(picomatch@4.0.2): + optionalDependencies: + picomatch: 4.0.2 + + fdir@6.5.0(picomatch@4.0.3): + optionalDependencies: + picomatch: 4.0.3 + + fecha@4.2.3: {} + + fetchdts@0.1.6: {} + + fflate@0.8.2: {} + + file-entry-cache@8.0.0: + dependencies: + flat-cache: 4.0.1 + + fill-range@7.1.1: + dependencies: + to-regex-range: 5.0.1 + + find-replace@3.0.0: + dependencies: + array-back: 3.1.0 + + find-root@1.1.0: {} + + find-up-simple@1.0.1: {} + + find-up@4.1.0: + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + + find-up@5.0.0: + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + + flat-cache@4.0.1: + dependencies: + flatted: 3.3.2 + keyv: 4.5.4 + + flatted@3.3.2: {} + + fmin@0.0.2: + dependencies: + contour_plot: 0.0.1 + json2module: 0.0.3 + rollup: 0.25.8 + tape: 4.17.0 + uglify-js: 2.8.29 + + follow-redirects@1.15.9: {} + + for-each@0.3.3: + dependencies: + is-callable: 1.2.7 + + foreground-child@3.3.0: + dependencies: + cross-spawn: 7.0.6 + signal-exit: 4.1.0 + + form-data@4.0.1: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + + form-data@4.0.4: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + es-set-tostringtag: 2.1.0 + hasown: 2.0.2 + mime-types: 2.1.35 + + format@0.2.2: {} + + fs-extra@11.3.2: + dependencies: + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.1 + + fs-minipass@2.1.0: + dependencies: + minipass: 3.3.6 + + fs.realpath@1.0.0: {} + + fsevents@2.3.3: + optional: true + + function-bind@1.1.2: {} + + function.prototype.name@1.1.8: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.3 + define-properties: 1.2.1 + functions-have-names: 1.2.3 + hasown: 2.0.2 + is-callable: 1.2.7 + + functions-have-names@1.2.3: {} + + gensync@1.0.0-beta.2: {} + + geojson-vt@3.2.1: {} + + get-caller-file@2.0.5: {} + + get-intrinsic@1.2.6: + dependencies: + call-bind-apply-helpers: 1.0.1 + dunder-proto: 1.0.1 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.0.0 + function-bind: 1.1.2 + gopd: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + math-intrinsics: 1.1.0 + + get-stream@6.0.1: {} + + get-stream@8.0.1: {} + + get-symbol-description@1.1.0: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + get-intrinsic: 1.2.6 + + get-tsconfig@4.10.1: + dependencies: + resolve-pkg-maps: 1.0.0 + + get-tsconfig@4.8.1: + dependencies: + resolve-pkg-maps: 1.0.0 + + get-value@2.0.6: {} + + giget@1.2.3: + dependencies: + citty: 0.1.6 + consola: 3.4.2 + defu: 6.1.4 + node-fetch-native: 1.6.4 + nypm: 0.3.12 + ohash: 1.1.4 + pathe: 1.1.2 + tar: 6.2.1 + + git-raw-commits@2.0.11: + dependencies: + dargs: 7.0.0 + lodash: 4.17.21 + meow: 8.1.2 + split2: 3.2.2 + through2: 4.0.2 + + github-slugger@2.0.0: {} + + gl-matrix@3.4.3: {} + + gl-vec2@1.3.0: {} + + glob-parent@5.1.2: + dependencies: + is-glob: 4.0.3 + + glob-parent@6.0.2: + dependencies: + is-glob: 4.0.3 + + glob@10.4.5: + dependencies: + foreground-child: 3.3.0 + jackspeak: 3.4.3 + minimatch: 9.0.5 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 1.11.1 + + glob@7.2.3: + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + + global-dirs@0.1.1: + dependencies: + ini: 1.3.8 + + global-prefix@3.0.0: + dependencies: + ini: 1.3.8 + kind-of: 6.0.3 + which: 1.3.1 + + globals@11.12.0: {} + + globals@14.0.0: {} + + globals@15.15.0: {} + + globals@16.4.0: {} + + globalthis@1.0.4: + dependencies: + define-properties: 1.2.1 + gopd: 1.2.0 + + globrex@0.1.2: {} + + gopd@1.2.0: {} + + graceful-fs@4.2.11: {} + + graphemer@1.4.0: {} + + grid-index@1.1.0: {} + + gzip-size@6.0.0: + dependencies: + duplexer: 0.1.2 + + h3@2.0.0-beta.4: + dependencies: + cookie-es: 2.0.0 + fetchdts: 0.1.6 + rou3: 0.7.3 + srvx: 0.8.7 + + hammerjs@2.0.8: {} + + hard-rejection@2.1.0: {} + + has-ansi@2.0.0: + dependencies: + ansi-regex: 2.1.1 + + has-bigints@1.1.0: {} + + has-flag@3.0.0: {} + + has-flag@4.0.0: {} + + has-property-descriptors@1.0.2: + dependencies: + es-define-property: 1.0.1 + + has-proto@1.2.0: + dependencies: + dunder-proto: 1.0.1 + + has-symbols@1.1.0: {} + + has-tostringtag@1.0.2: + dependencies: + has-symbols: 1.1.0 + + has@1.0.4: {} + + hasown@2.0.2: + dependencies: + function-bind: 1.1.2 + + he@1.2.0: {} + + hookable@5.5.3: {} + + hosted-git-info@2.8.9: {} + + hosted-git-info@4.1.0: + dependencies: + lru-cache: 6.0.0 + + html-encoding-sniffer@3.0.0: + dependencies: + whatwg-encoding: 2.0.0 + + html-encoding-sniffer@4.0.0: + dependencies: + whatwg-encoding: 3.1.1 + + html-entities@2.5.2: {} + + html-tokenize@2.0.1: + dependencies: + buffer-from: 0.1.2 + inherits: 2.0.4 + minimist: 1.2.8 + readable-stream: 1.0.34 + through2: 0.4.2 + + http-proxy-agent@5.0.0: + dependencies: + '@tootallnate/once': 2.0.0 + agent-base: 6.0.2 + debug: 4.4.0 + transitivePeerDependencies: + - supports-color + + http-proxy-agent@7.0.2: + dependencies: + agent-base: 7.1.3 + debug: 4.4.0 + transitivePeerDependencies: + - supports-color + + https-proxy-agent@5.0.1: + dependencies: + agent-base: 6.0.2 + debug: 4.4.0 + transitivePeerDependencies: + - supports-color + + https-proxy-agent@7.0.6: + dependencies: + agent-base: 7.1.3 + debug: 4.4.0 + transitivePeerDependencies: + - supports-color + + human-signals@2.1.0: {} + + human-signals@4.3.1: {} + + human-signals@5.0.0: {} + + husky@9.1.7: {} + + iconv-lite@0.4.24: + dependencies: + safer-buffer: 2.1.2 + + iconv-lite@0.6.3: + dependencies: + safer-buffer: 2.1.2 + + ieee754@1.2.1: {} + + ignore@5.3.2: {} + + ignore@7.0.5: {} + + image-size@0.5.5: + optional: true + + import-fresh@3.3.0: + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + + imurmurhash@0.1.4: {} + + indent-string@4.0.0: {} + + indent-string@5.0.0: {} + + inflight@1.0.6: + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + + inherits@2.0.4: {} + + ini@1.3.8: {} + + internal-slot@1.1.0: + dependencies: + es-errors: 1.3.0 + hasown: 2.0.2 + side-channel: 1.1.0 + + internmap@1.0.1: {} + + is-arguments@1.2.0: + dependencies: + call-bound: 1.0.3 + has-tostringtag: 1.0.2 + + is-array-buffer@3.0.5: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.3 + get-intrinsic: 1.2.6 + + is-arrayish@0.2.1: {} + + is-async-function@2.0.0: + dependencies: + has-tostringtag: 1.0.2 + + is-bigint@1.1.0: + dependencies: + has-bigints: 1.1.0 + + is-binary-path@2.1.0: + dependencies: + binary-extensions: 2.3.0 + + is-boolean-object@1.2.1: + dependencies: + call-bound: 1.0.3 + has-tostringtag: 1.0.2 + + is-buffer@1.1.6: {} + + is-builtin-module@5.0.0: + dependencies: + builtin-modules: 5.0.0 + + is-callable@1.2.7: {} + + is-core-module@2.16.1: + dependencies: + hasown: 2.0.2 + + is-data-view@1.0.2: + dependencies: + call-bound: 1.0.3 + get-intrinsic: 1.2.6 + is-typed-array: 1.1.15 + + is-date-object@1.1.0: + dependencies: + call-bound: 1.0.3 + has-tostringtag: 1.0.2 + + is-docker@3.0.0: {} + + is-extendable@0.1.1: {} + + is-extendable@1.0.1: + dependencies: + is-plain-object: 2.0.4 + + is-extglob@2.1.1: {} + + is-finalizationregistry@1.1.1: + dependencies: + call-bound: 1.0.3 + + is-fullwidth-code-point@3.0.0: {} + + is-fullwidth-code-point@4.0.0: {} + + is-generator-function@1.0.10: + dependencies: + has-tostringtag: 1.0.2 + + is-glob@4.0.3: + dependencies: + is-extglob: 2.1.1 + + is-inside-container@1.0.0: + dependencies: + is-docker: 3.0.0 + + is-map@2.0.3: {} + + is-number-object@1.1.1: + dependencies: + call-bound: 1.0.3 + has-tostringtag: 1.0.2 + + is-number@7.0.0: {} + + is-obj@2.0.0: {} + + is-plain-obj@1.1.0: {} + + is-plain-object@2.0.4: + dependencies: + isobject: 3.0.1 + + is-plain-object@3.0.1: {} + + is-potential-custom-element-name@1.0.1: {} + + is-regex@1.1.4: + dependencies: + call-bind: 1.0.8 + has-tostringtag: 1.0.2 + + is-regex@1.2.1: + dependencies: + call-bound: 1.0.3 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + is-set@2.0.3: {} + + is-shared-array-buffer@1.0.4: + dependencies: + call-bound: 1.0.3 + + is-stream@2.0.1: {} + + is-stream@3.0.0: {} + + is-string@1.1.1: + dependencies: + call-bound: 1.0.3 + has-tostringtag: 1.0.2 + + is-symbol@1.1.1: + dependencies: + call-bound: 1.0.3 + has-symbols: 1.1.0 + safe-regex-test: 1.1.0 + + is-text-path@2.0.0: + dependencies: + text-extensions: 2.4.0 + + is-typed-array@1.1.15: + dependencies: + which-typed-array: 1.1.18 + + is-weakmap@2.0.2: {} + + is-weakref@1.1.0: + dependencies: + call-bound: 1.0.3 + + is-weakset@2.0.4: + dependencies: + call-bound: 1.0.3 + get-intrinsic: 1.2.6 + + is-what@3.14.1: {} + + is-wsl@3.1.0: + dependencies: + is-inside-container: 1.0.0 + + isarray@0.0.1: {} + + isarray@1.0.0: {} + + isarray@2.0.5: {} + + isexe@2.0.0: {} + + isobject@3.0.1: {} + + jackspeak@3.4.3: + dependencies: + '@isaacs/cliui': 8.0.2 + optionalDependencies: + '@pkgjs/parseargs': 0.11.0 + + jiti@1.21.7: {} + + jiti@2.6.0: {} + + js-beautify@1.15.1: + dependencies: + config-chain: 1.1.13 + editorconfig: 1.0.4 + glob: 10.4.5 + js-cookie: 3.0.5 + nopt: 7.2.1 + + js-cookie@3.0.5: {} + + js-tokens@4.0.0: {} + + js-tokens@9.0.1: {} + + js-yaml@4.1.0: + dependencies: + argparse: 2.0.1 + + jsbn@1.1.0: {} + + jsdoc-type-pratt-parser@4.1.0: {} + + jsdoc-type-pratt-parser@5.4.0: {} + + jsdom@22.1.0: + dependencies: + abab: 2.0.6 + cssstyle: 3.0.0 + data-urls: 4.0.0 + decimal.js: 10.4.3 + domexception: 4.0.0 + form-data: 4.0.1 + html-encoding-sniffer: 3.0.0 + http-proxy-agent: 5.0.0 + https-proxy-agent: 5.0.1 + is-potential-custom-element-name: 1.0.1 + nwsapi: 2.2.16 + parse5: 7.2.1 + rrweb-cssom: 0.6.0 + saxes: 6.0.0 + symbol-tree: 3.2.4 + tough-cookie: 4.1.4 + w3c-xmlserializer: 4.0.0 + webidl-conversions: 7.0.0 + whatwg-encoding: 2.0.0 + whatwg-mimetype: 3.0.0 + whatwg-url: 12.0.1 + ws: 8.18.0 + xml-name-validator: 4.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + jsdom@24.1.3: + dependencies: + cssstyle: 4.1.0 + data-urls: 5.0.0 + decimal.js: 10.4.3 + form-data: 4.0.1 + html-encoding-sniffer: 4.0.0 + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.6 + is-potential-custom-element-name: 1.0.1 + nwsapi: 2.2.16 + parse5: 7.2.1 + rrweb-cssom: 0.7.1 + saxes: 6.0.0 + symbol-tree: 3.2.4 + tough-cookie: 4.1.4 + w3c-xmlserializer: 5.0.0 + webidl-conversions: 7.0.0 + whatwg-encoding: 3.1.1 + whatwg-mimetype: 4.0.0 + whatwg-url: 14.1.0 + ws: 8.18.0 + xml-name-validator: 5.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + jsesc@3.0.2: {} + + jsesc@3.1.0: {} + + json-buffer@3.0.1: {} + + json-parse-better-errors@1.0.2: {} + + json-parse-even-better-errors@2.3.1: {} + + json-schema-traverse@0.4.1: {} + + json-schema-traverse@1.0.0: {} + + json-stable-stringify-without-jsonify@1.0.1: {} + + json-stringify-pretty-compact@3.0.0: {} + + json2module@0.0.3: + dependencies: + rw: 1.3.3 + + json5@2.2.3: {} + + jsonc-eslint-parser@2.4.0: + dependencies: + acorn: 8.15.0 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 + semver: 7.7.2 + + jsonc-eslint-parser@2.4.1: + dependencies: + acorn: 8.15.0 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 + semver: 7.7.2 + + jsonfile@6.1.0: + dependencies: + universalify: 2.0.1 + optionalDependencies: + graceful-fs: 4.2.11 + + jsonparse@1.3.1: {} + + kdbush@3.0.0: {} + + kdbush@4.0.2: {} + + keyv@4.5.4: + dependencies: + json-buffer: 3.0.1 + + kind-of@3.2.2: + dependencies: + is-buffer: 1.1.6 + + kind-of@6.0.3: {} + + kolorist@1.8.0: {} + + lazy-cache@1.0.4: {} + + less@4.4.1: + dependencies: + copy-anything: 2.0.6 + parse-node-version: 1.0.1 + tslib: 2.8.1 + optionalDependencies: + errno: 0.1.8 + graceful-fs: 4.2.11 + image-size: 0.5.5 + make-dir: 2.1.0 + mime: 1.6.0 + needle: 3.3.1 + source-map: 0.6.1 + + levn@0.4.1: + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + + lightningcss-darwin-arm64@1.30.1: + optional: true + + lightningcss-darwin-x64@1.30.1: + optional: true + + lightningcss-freebsd-x64@1.30.1: + optional: true + + lightningcss-linux-arm-gnueabihf@1.30.1: + optional: true + + lightningcss-linux-arm64-gnu@1.30.1: + optional: true + + lightningcss-linux-arm64-musl@1.30.1: + optional: true + + lightningcss-linux-x64-gnu@1.30.1: + optional: true + + lightningcss-linux-x64-musl@1.30.1: + optional: true + + lightningcss-win32-arm64-msvc@1.30.1: + optional: true + + lightningcss-win32-x64-msvc@1.30.1: + optional: true + + lightningcss@1.30.1: + dependencies: + detect-libc: 2.0.4 + optionalDependencies: + lightningcss-darwin-arm64: 1.30.1 + lightningcss-darwin-x64: 1.30.1 + lightningcss-freebsd-x64: 1.30.1 + lightningcss-linux-arm-gnueabihf: 1.30.1 + lightningcss-linux-arm64-gnu: 1.30.1 + lightningcss-linux-arm64-musl: 1.30.1 + lightningcss-linux-x64-gnu: 1.30.1 + lightningcss-linux-x64-musl: 1.30.1 + lightningcss-win32-arm64-msvc: 1.30.1 + lightningcss-win32-x64-msvc: 1.30.1 + + lilconfig@2.1.0: {} + + lines-and-columns@1.2.4: {} + + lint-staged@14.0.1: + dependencies: + chalk: 5.3.0 + commander: 11.0.0 + debug: 4.3.4 + execa: 7.2.0 + lilconfig: 2.1.0 + listr2: 6.6.1 + micromatch: 4.0.5 + pidtree: 0.6.0 + string-argv: 0.3.2 + yaml: 2.3.1 + transitivePeerDependencies: + - enquirer + - supports-color + + listr2@6.6.1: + dependencies: + cli-truncate: 3.1.0 + colorette: 2.0.20 + eventemitter3: 5.0.1 + log-update: 5.0.1 + rfdc: 1.4.1 + wrap-ansi: 8.1.0 + + load-json-file@4.0.0: + dependencies: + graceful-fs: 4.2.11 + parse-json: 4.0.0 + pify: 3.0.0 + strip-bom: 3.0.0 + + local-pkg@1.1.1: + dependencies: + mlly: 1.7.4 + pkg-types: 2.2.0 + quansync: 0.2.11 + + local-pkg@1.1.2: + dependencies: + mlly: 1.7.4 + pkg-types: 2.3.0 + quansync: 0.2.11 + + locate-path@5.0.0: + dependencies: + p-locate: 4.1.0 + + locate-path@6.0.0: + dependencies: + p-locate: 5.0.0 + + lodash-es@4.17.21: {} + + lodash.camelcase@4.3.0: {} + + lodash.clonedeep@4.5.0: {} + + lodash.isequal@4.5.0: {} + + lodash.isfunction@3.0.9: {} + + lodash.isplainobject@4.0.6: {} + + lodash.kebabcase@4.1.1: {} + + lodash.merge@4.6.2: {} + + lodash.mergewith@4.6.2: {} + + lodash.snakecase@4.1.1: {} + + lodash.startcase@4.4.0: {} + + lodash.uniq@4.5.0: {} + + lodash.upperfirst@4.3.1: {} + + lodash@4.17.21: {} + + log-update@5.0.1: + dependencies: + ansi-escapes: 5.0.0 + cli-cursor: 4.0.0 + slice-ansi: 5.0.0 + strip-ansi: 7.1.0 + wrap-ansi: 8.1.0 + + longest-streak@3.1.0: {} + + longest@1.0.1: {} + + loose-envify@1.4.0: + dependencies: + js-tokens: 4.0.0 + + loupe@3.2.0: {} + + lru-cache@10.4.3: {} + + lru-cache@5.1.1: + dependencies: + yallist: 3.1.1 + + lru-cache@6.0.0: + dependencies: + yallist: 4.0.0 + + magic-string@0.30.17: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.0 + + magic-string@0.30.19: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + + magicast@0.3.5: + dependencies: + '@babel/parser': 7.28.4 + '@babel/types': 7.28.4 + source-map-js: 1.2.1 + optional: true + + make-dir@2.1.0: + dependencies: + pify: 4.0.1 + semver: 5.7.2 + optional: true + + make-error@1.3.6: {} + + map-obj@1.0.1: {} + + map-obj@4.3.0: {} + + mapbox-gl@1.13.3: + dependencies: + '@mapbox/geojson-rewind': 0.5.2 + '@mapbox/geojson-types': 1.0.2 + '@mapbox/jsonlint-lines-primitives': 2.0.2 + '@mapbox/mapbox-gl-supported': 1.5.0(mapbox-gl@1.13.3) + '@mapbox/point-geometry': 0.1.0 + '@mapbox/tiny-sdf': 1.2.5 + '@mapbox/unitbezier': 0.0.0 + '@mapbox/vector-tile': 1.3.1 + '@mapbox/whoots-js': 3.1.0 + csscolorparser: 1.0.3 + earcut: 2.2.4 + geojson-vt: 3.2.1 + gl-matrix: 3.4.3 + grid-index: 1.1.0 + murmurhash-js: 1.0.0 + pbf: 3.3.0 + potpack: 1.0.2 + quickselect: 2.0.0 + rw: 1.3.3 + supercluster: 7.1.5 + tinyqueue: 2.0.3 + vt-pbf: 3.1.3 + + maplibre-gl@3.6.2: + dependencies: + '@mapbox/geojson-rewind': 0.5.2 + '@mapbox/jsonlint-lines-primitives': 2.0.2 + '@mapbox/point-geometry': 0.1.0 + '@mapbox/tiny-sdf': 2.0.6 + '@mapbox/unitbezier': 0.0.1 + '@mapbox/vector-tile': 1.3.1 + '@mapbox/whoots-js': 3.1.0 + '@maplibre/maplibre-gl-style-spec': 19.3.3 + '@types/geojson': 7946.0.15 + '@types/mapbox__point-geometry': 0.1.4 + '@types/mapbox__vector-tile': 1.3.4 + '@types/pbf': 3.0.5 + '@types/supercluster': 7.1.3 + earcut: 2.2.4 + geojson-vt: 3.2.1 + gl-matrix: 3.4.3 + global-prefix: 3.0.0 + kdbush: 4.0.2 + murmurhash-js: 1.0.0 + pbf: 3.3.0 + potpack: 2.0.0 + quickselect: 2.0.0 + supercluster: 8.0.1 + tinyqueue: 2.0.3 + vt-pbf: 3.1.3 + + markdown-table@3.0.4: {} + + math-intrinsics@1.1.0: {} + + mdast-util-find-and-replace@3.0.2: + dependencies: + '@types/mdast': 4.0.4 + escape-string-regexp: 5.0.0 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 + + mdast-util-from-markdown@2.0.2: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + decode-named-character-reference: 1.2.0 + devlop: 1.1.0 + mdast-util-to-string: 4.0.0 + micromark: 4.0.2 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-decode-string: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + unist-util-stringify-position: 4.0.0 + transitivePeerDependencies: + - supports-color + + mdast-util-frontmatter@2.0.1: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + escape-string-regexp: 5.0.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + micromark-extension-frontmatter: 2.0.0 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-autolink-literal@2.0.1: + dependencies: + '@types/mdast': 4.0.4 + ccount: 2.0.1 + devlop: 1.1.0 + mdast-util-find-and-replace: 3.0.2 + micromark-util-character: 2.1.1 + + mdast-util-gfm-footnote@2.1.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + micromark-util-normalize-identifier: 2.0.1 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-strikethrough@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-table@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + markdown-table: 3.0.4 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-task-list-item@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm@3.1.0: + dependencies: + mdast-util-from-markdown: 2.0.2 + mdast-util-gfm-autolink-literal: 2.0.1 + mdast-util-gfm-footnote: 2.1.0 + mdast-util-gfm-strikethrough: 2.0.0 + mdast-util-gfm-table: 2.0.0 + mdast-util-gfm-task-list-item: 2.0.0 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-phrasing@4.1.0: + dependencies: + '@types/mdast': 4.0.4 + unist-util-is: 6.0.0 + + mdast-util-to-markdown@2.1.2: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + longest-streak: 3.1.0 + mdast-util-phrasing: 4.1.0 + mdast-util-to-string: 4.0.0 + micromark-util-classify-character: 2.0.1 + micromark-util-decode-string: 2.0.1 + unist-util-visit: 5.0.0 + zwitch: 2.0.4 + + mdast-util-to-string@4.0.0: + dependencies: + '@types/mdast': 4.0.4 + + mdn-data@2.12.2: {} + + memorystream@0.3.1: {} + + meow@12.1.1: {} + + meow@8.1.2: + dependencies: + '@types/minimist': 1.2.5 + camelcase-keys: 6.2.2 + decamelize-keys: 1.1.1 + hard-rejection: 2.1.0 + minimist-options: 4.1.0 + normalize-package-data: 3.0.3 + read-pkg-up: 7.0.1 + redent: 3.0.0 + trim-newlines: 3.0.1 + type-fest: 0.18.1 + yargs-parser: 20.2.9 + + merge-stream@2.0.0: {} + + merge2@1.4.1: {} + + micromark-core-commonmark@2.0.3: + dependencies: + decode-named-character-reference: 1.2.0 + devlop: 1.1.0 + micromark-factory-destination: 2.0.1 + micromark-factory-label: 2.0.1 + micromark-factory-space: 2.0.1 + micromark-factory-title: 2.0.1 + micromark-factory-whitespace: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-chunked: 2.0.1 + micromark-util-classify-character: 2.0.1 + micromark-util-html-tag-name: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-subtokenize: 2.1.0 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-frontmatter@2.0.0: + dependencies: + fault: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-autolink-literal@2.1.0: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-footnote@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-core-commonmark: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-strikethrough@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.1 + micromark-util-classify-character: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-table@2.1.1: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-tagfilter@2.0.0: + dependencies: + micromark-util-types: 2.0.2 + + micromark-extension-gfm-task-list-item@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm@3.0.0: + dependencies: + micromark-extension-gfm-autolink-literal: 2.1.0 + micromark-extension-gfm-footnote: 2.1.0 + micromark-extension-gfm-strikethrough: 2.1.0 + micromark-extension-gfm-table: 2.1.1 + micromark-extension-gfm-tagfilter: 2.0.0 + micromark-extension-gfm-task-list-item: 2.1.0 + micromark-util-combine-extensions: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-destination@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-label@2.0.1: + dependencies: + devlop: 1.1.0 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-space@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-types: 2.0.2 + + micromark-factory-title@2.0.1: + dependencies: + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-whitespace@2.0.1: + dependencies: + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-character@2.1.1: + dependencies: + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-chunked@2.0.1: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-classify-character@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-combine-extensions@2.0.1: + dependencies: + micromark-util-chunked: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-decode-numeric-character-reference@2.0.2: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-decode-string@2.0.1: + dependencies: + decode-named-character-reference: 1.2.0 + micromark-util-character: 2.1.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-symbol: 2.0.1 + + micromark-util-encode@2.0.1: {} + + micromark-util-html-tag-name@2.0.1: {} + + micromark-util-normalize-identifier@2.0.1: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-resolve-all@2.0.1: + dependencies: + micromark-util-types: 2.0.2 + + micromark-util-sanitize-uri@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-encode: 2.0.1 + micromark-util-symbol: 2.0.1 + + micromark-util-subtokenize@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-symbol@2.0.1: {} + + micromark-util-types@2.0.2: {} + + micromark@4.0.2: + dependencies: + '@types/debug': 4.1.12 + debug: 4.4.3 + decode-named-character-reference: 1.2.0 + devlop: 1.1.0 + micromark-core-commonmark: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-chunked: 2.0.1 + micromark-util-combine-extensions: 2.0.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-encode: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-subtokenize: 2.1.0 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + transitivePeerDependencies: + - supports-color + + micromatch@4.0.5: + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + + micromatch@4.0.8: + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + + mime-db@1.52.0: {} + + mime-types@2.1.35: + dependencies: + mime-db: 1.52.0 + + mime@1.6.0: + optional: true + + mimic-fn@2.1.0: {} + + mimic-fn@4.0.0: {} + + min-indent@1.0.1: {} + + minimatch@3.1.2: + dependencies: + brace-expansion: 1.1.11 + + minimatch@9.0.1: + dependencies: + brace-expansion: 2.0.1 + + minimatch@9.0.5: + dependencies: + brace-expansion: 2.0.1 + + minimist-options@4.1.0: + dependencies: + arrify: 1.0.1 + is-plain-obj: 1.1.0 + kind-of: 6.0.3 + + minimist@1.2.8: {} + + minipass@3.3.6: + dependencies: + yallist: 4.0.0 + + minipass@5.0.0: {} + + minipass@7.1.2: {} + + minizlib@2.1.2: + dependencies: + minipass: 3.3.6 + yallist: 4.0.0 + + mitt@3.0.1: {} + + mkdirp@1.0.4: {} + + mlly@1.7.4: + dependencies: + acorn: 8.14.0 + pathe: 2.0.3 + pkg-types: 1.3.0 + ufo: 1.5.4 + + mlly@1.8.0: + dependencies: + acorn: 8.15.0 + pathe: 2.0.3 + pkg-types: 1.3.1 + ufo: 1.6.1 + + mock-h3@0.0.1-beta.12(h3@2.0.0-beta.4)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))(typescript@5.8.3)(vue-tsc@3.0.8(typescript@5.8.3)): + dependencies: + chalk: 5.6.0 + h3: 2.0.0-beta.4 + jiti: 2.6.0 + local-pkg: 1.1.2 + pathe: 2.0.3 + tinyglobby: 0.2.14 + tsdown: 0.14.1(typescript@5.8.3)(vue-tsc@3.0.8(typescript@5.8.3)) + vite: rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1) + transitivePeerDependencies: + - '@arethetypeswrong/core' + - '@typescript/native-preview' + - oxc-resolver + - publint + - supports-color + - typescript + - unplugin-lightningcss + - unplugin-unused + - vue-tsc + + mock-property@1.0.3: + dependencies: + define-data-property: 1.1.4 + functions-have-names: 1.2.3 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + hasown: 2.0.2 + isarray: 2.0.5 + + mri@1.2.0: {} + + mrmime@2.0.0: {} + + ms@2.1.2: {} + + ms@2.1.3: {} + + muggle-string@0.4.1: {} + + multipipe@1.0.2: + dependencies: + duplexer2: 0.1.4 + object-assign: 4.1.1 + + murmurhash-js@1.0.0: {} + + nanoid@3.3.11: {} + + nanopop@2.4.2: {} + + natural-compare@1.4.0: {} + + natural-orderby@5.0.0: {} + + needle@3.3.1: + dependencies: + iconv-lite: 0.6.3 + sax: 1.4.1 + optional: true + + nice-try@1.0.5: {} + + node-fetch-native@1.6.4: {} + + node-releases@2.0.19: {} + + node-releases@2.0.21: {} + + nopt@7.2.1: + dependencies: + abbrev: 2.0.0 + + normalize-package-data@2.5.0: + dependencies: + hosted-git-info: 2.8.9 + resolve: 1.22.10 + semver: 5.7.2 + validate-npm-package-license: 3.0.4 + + normalize-package-data@3.0.3: + dependencies: + hosted-git-info: 4.1.0 + is-core-module: 2.16.1 + semver: 7.6.3 + validate-npm-package-license: 3.0.4 + + normalize-path@3.0.0: {} + + npm-run-all@4.1.5: + dependencies: + ansi-styles: 3.2.1 + chalk: 2.4.2 + cross-spawn: 6.0.6 + memorystream: 0.3.1 + minimatch: 3.1.2 + pidtree: 0.3.1 + read-pkg: 3.0.0 + shell-quote: 1.8.2 + string.prototype.padend: 3.1.6 + + npm-run-path@4.0.1: + dependencies: + path-key: 3.1.1 + + npm-run-path@5.3.0: + dependencies: + path-key: 4.0.0 + + nth-check@2.1.1: + dependencies: + boolbase: 1.0.0 + + nwsapi@2.2.16: {} + + nypm@0.3.12: + dependencies: + citty: 0.1.6 + consola: 3.4.2 + execa: 8.0.1 + pathe: 1.1.2 + pkg-types: 1.3.0 + ufo: 1.5.4 + + object-assign@4.1.1: {} + + object-deep-merge@1.0.5: + dependencies: + type-fest: 4.2.0 + + object-inspect@1.12.3: {} + + object-inspect@1.13.3: {} + + object-is@1.1.6: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + + object-keys@0.4.0: {} + + object-keys@1.1.1: {} + + object.assign@4.1.7: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.3 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + has-symbols: 1.1.0 + object-keys: 1.1.1 + + ofetch@1.4.1: + dependencies: + destr: 2.0.3 + node-fetch-native: 1.6.4 + ufo: 1.5.4 + + ohash@1.1.4: {} + + once@1.4.0: + dependencies: + wrappy: 1.0.2 + + onetime@5.1.2: + dependencies: + mimic-fn: 2.1.0 + + onetime@6.0.0: + dependencies: + mimic-fn: 4.0.0 + + open@10.1.0: + dependencies: + default-browser: 5.2.1 + define-lazy-prop: 3.0.0 + is-inside-container: 1.0.0 + is-wsl: 3.1.0 + + optionator@0.9.4: + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.5 + + own-keys@1.0.1: + dependencies: + get-intrinsic: 1.2.6 + object-keys: 1.1.1 + safe-push-apply: 1.0.0 + + p-limit@2.3.0: + dependencies: + p-try: 2.2.0 + + p-limit@3.1.0: + dependencies: + yocto-queue: 0.1.0 + + p-locate@4.1.0: + dependencies: + p-limit: 2.3.0 + + p-locate@5.0.0: + dependencies: + p-limit: 3.1.0 + + p-try@2.2.0: {} + + package-json-from-dist@1.0.1: {} + + package-manager-detector@1.3.0: {} + + parent-module@1.0.1: + dependencies: + callsites: 3.1.0 + + parse-gitignore@2.0.0: {} + + parse-imports-exports@0.2.4: + dependencies: + parse-statements: 1.0.11 + + parse-json@4.0.0: + dependencies: + error-ex: 1.3.2 + json-parse-better-errors: 1.0.2 + + parse-json@5.2.0: + dependencies: + '@babel/code-frame': 7.26.2 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + + parse-node-version@1.0.1: {} + + parse-statements@1.0.11: {} + + parse5@7.2.1: + dependencies: + entities: 4.5.0 + + path-browserify@1.0.1: {} + + path-exists@4.0.0: {} + + path-is-absolute@1.0.1: {} + + path-key@2.0.1: {} + + path-key@3.1.1: {} + + path-key@4.0.0: {} + + path-parse@1.0.7: {} + + path-scurry@1.11.1: + dependencies: + lru-cache: 10.4.3 + minipass: 7.1.2 + + path-type@3.0.0: + dependencies: + pify: 3.0.0 + + path-type@4.0.0: {} + + pathe@1.1.2: {} + + pathe@2.0.3: {} + + pathval@2.0.1: {} + + pbf@3.3.0: + dependencies: + ieee754: 1.2.1 + resolve-protobuf-schema: 2.1.0 + + pdfast@0.2.0: {} + + perfect-debounce@1.0.0: {} + + picocolors@1.1.1: {} + + picomatch@2.3.1: {} + + picomatch@4.0.2: {} + + picomatch@4.0.3: {} + + pidtree@0.3.1: {} + + pidtree@0.6.0: {} + + pify@3.0.0: {} + + pify@4.0.1: + optional: true + + pinia@2.3.1(typescript@5.8.3)(vue@3.5.22(typescript@5.8.3)): + dependencies: + '@vue/devtools-api': 6.6.4 + vue: 3.5.22(typescript@5.8.3) + vue-demi: 0.14.10(vue@3.5.22(typescript@5.8.3)) + optionalDependencies: + typescript: 5.8.3 + transitivePeerDependencies: + - '@vue/composition-api' + + pkg-types@1.3.0: + dependencies: + confbox: 0.1.8 + mlly: 1.7.4 + pathe: 1.1.2 + + pkg-types@1.3.1: + dependencies: + confbox: 0.1.8 + mlly: 1.8.0 + pathe: 2.0.3 + + pkg-types@2.2.0: + dependencies: + confbox: 0.2.2 + exsolve: 1.0.7 + pathe: 2.0.3 + + pkg-types@2.3.0: + dependencies: + confbox: 0.2.2 + exsolve: 1.0.7 + pathe: 2.0.3 + + pluralize@8.0.0: {} + + pmtiles@2.11.0: + dependencies: + fflate: 0.8.2 + + pnpm-workspace-yaml@1.1.2: + dependencies: + yaml: 2.8.1 + + polygon-clipping@0.15.7: + dependencies: + robust-predicates: 3.0.2 + splaytree: 3.1.2 + + polyline-miter-util@1.0.1: + dependencies: + gl-vec2: 1.3.0 + + possible-typed-array-names@1.0.0: {} + + postcss-selector-parser@6.1.2: + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + + postcss@8.5.6: + dependencies: + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + potpack@1.0.2: {} + + potpack@2.0.0: {} + + prelude-ls@1.2.1: {} + + prettier-linter-helpers@1.0.0: + dependencies: + fast-diff: 1.3.0 + + prettier@2.8.8: {} + + prettier@3.6.2: {} + + process-nextick-args@2.0.1: {} + + proto-list@1.2.4: {} + + protocol-buffers-schema@3.6.0: {} + + proxy-from-env@1.1.0: {} + + prr@1.0.1: + optional: true + + psl@1.15.0: + dependencies: + punycode: 2.3.1 + + punycode@2.3.1: {} + + quansync@0.2.11: {} + + querystringify@2.2.0: {} + + queue-microtask@1.2.3: {} + + quick-lru@4.0.1: {} + + quickselect@2.0.0: {} + + rc9@2.1.2: + dependencies: + defu: 6.1.4 + destr: 2.0.3 + + read-pkg-up@7.0.1: + dependencies: + find-up: 4.1.0 + read-pkg: 5.2.0 + type-fest: 0.8.1 + + read-pkg@3.0.0: + dependencies: + load-json-file: 4.0.0 + normalize-package-data: 2.5.0 + path-type: 3.0.0 + + read-pkg@5.2.0: + dependencies: + '@types/normalize-package-data': 2.4.4 + normalize-package-data: 2.5.0 + parse-json: 5.2.0 + type-fest: 0.6.0 + + readable-stream@1.0.34: + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 0.0.1 + string_decoder: 0.10.31 + + readable-stream@2.3.8: + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 1.0.0 + process-nextick-args: 2.0.1 + safe-buffer: 5.1.2 + string_decoder: 1.1.1 + util-deprecate: 1.0.2 + + readable-stream@3.6.2: + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + + readdirp@3.6.0: + dependencies: + picomatch: 2.3.1 + + readdirp@4.0.2: {} + + redent@3.0.0: + dependencies: + indent-string: 4.0.0 + strip-indent: 3.0.0 + + reduce-flatten@2.0.0: {} + + refa@0.12.1: + dependencies: + '@eslint-community/regexpp': 4.12.1 + + reflect.getprototypeof@1.0.9: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + dunder-proto: 1.0.1 + es-abstract: 1.23.8 + es-errors: 1.3.0 + get-intrinsic: 1.2.6 + gopd: 1.2.0 + which-builtin-type: 1.2.1 + + regenerator-runtime@0.14.1: {} + + regexp-ast-analysis@0.7.1: + dependencies: + '@eslint-community/regexpp': 4.12.1 + refa: 0.12.1 + + regexp-tree@0.1.27: {} + + regexp.prototype.flags@1.5.3: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-errors: 1.3.0 + set-function-name: 2.0.2 + + regjsparser@0.12.0: + dependencies: + jsesc: 3.0.2 + + regl@1.6.1: {} + + repeat-string@1.6.1: {} + + require-directory@2.1.1: {} + + require-from-string@2.0.2: {} + + requires-port@1.0.0: {} + + resize-observer-polyfill@1.5.1: {} + + resolve-from@4.0.0: {} + + resolve-from@5.0.0: {} + + resolve-global@1.0.0: + dependencies: + global-dirs: 0.1.1 + + resolve-pkg-maps@1.0.0: {} + + resolve-protobuf-schema@2.1.0: + dependencies: + protocol-buffers-schema: 3.6.0 + + resolve@1.22.10: + dependencies: + is-core-module: 2.16.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + restore-cursor@4.0.0: + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + + reusify@1.0.4: {} + + rfdc@1.4.1: {} + + right-align@0.1.3: + dependencies: + align-text: 0.1.4 + + robust-predicates@3.0.2: {} + + rolldown-plugin-dts@0.15.6(rolldown@1.1.2)(typescript@5.8.3)(vue-tsc@3.0.8(typescript@5.8.3)): + dependencies: + '@babel/generator': 7.28.3 + '@babel/parser': 7.28.3 + '@babel/types': 7.28.2 + ast-kit: 2.1.2 + birpc: 2.5.0 + debug: 4.4.1 + dts-resolver: 2.1.1 + get-tsconfig: 4.10.1 + rolldown: 1.1.2 + optionalDependencies: + typescript: 5.8.3 + vue-tsc: 3.0.8(typescript@5.8.3) + transitivePeerDependencies: + - oxc-resolver + - supports-color + + rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1): + dependencies: + '@oxc-project/runtime': 0.92.0 + fdir: 6.5.0(picomatch@4.0.3) + lightningcss: 1.30.1 + picomatch: 4.0.3 + postcss: 8.5.6 + rolldown: 1.0.0-beta.40 + tinyglobby: 0.2.15 + optionalDependencies: + '@types/node': 20.19.17 + esbuild: 0.25.10 + fsevents: 2.3.3 + jiti: 2.6.0 + less: 4.4.1 + terser: 5.37.0 + yaml: 2.8.1 + + rolldown@1.0.0-beta.40: + dependencies: + '@oxc-project/types': 0.92.0 + '@rolldown/pluginutils': 1.0.0-beta.40 + ansis: 4.1.0 + optionalDependencies: + '@rolldown/binding-android-arm64': 1.0.0-beta.40 + '@rolldown/binding-darwin-arm64': 1.0.0-beta.40 + '@rolldown/binding-darwin-x64': 1.0.0-beta.40 + '@rolldown/binding-freebsd-x64': 1.0.0-beta.40 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.40 + '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.40 + '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.40 + '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.40 + '@rolldown/binding-linux-x64-musl': 1.0.0-beta.40 + '@rolldown/binding-openharmony-arm64': 1.0.0-beta.40 + '@rolldown/binding-wasm32-wasi': 1.0.0-beta.40 + '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.40 + '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.40 + '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.40 + + rolldown@1.1.2: + dependencies: + '@oxc-project/types': 0.137.0 + '@rolldown/pluginutils': 1.0.1 + optionalDependencies: + '@rolldown/binding-android-arm64': 1.1.2 + '@rolldown/binding-darwin-arm64': 1.1.2 + '@rolldown/binding-darwin-x64': 1.1.2 + '@rolldown/binding-freebsd-x64': 1.1.2 + '@rolldown/binding-linux-arm-gnueabihf': 1.1.2 + '@rolldown/binding-linux-arm64-gnu': 1.1.2 + '@rolldown/binding-linux-arm64-musl': 1.1.2 + '@rolldown/binding-linux-ppc64-gnu': 1.1.2 + '@rolldown/binding-linux-s390x-gnu': 1.1.2 + '@rolldown/binding-linux-x64-gnu': 1.1.2 + '@rolldown/binding-linux-x64-musl': 1.1.2 + '@rolldown/binding-openharmony-arm64': 1.1.2 + '@rolldown/binding-wasm32-wasi': 1.1.2 + '@rolldown/binding-win32-arm64-msvc': 1.1.2 + '@rolldown/binding-win32-x64-msvc': 1.1.2 + + rollup@0.25.8: + dependencies: + chalk: 1.1.3 + minimist: 1.2.8 + source-map-support: 0.3.3 + + rollup@4.46.3: + dependencies: + '@types/estree': 1.0.8 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.46.3 + '@rollup/rollup-android-arm64': 4.46.3 + '@rollup/rollup-darwin-arm64': 4.46.3 + '@rollup/rollup-darwin-x64': 4.46.3 + '@rollup/rollup-freebsd-arm64': 4.46.3 + '@rollup/rollup-freebsd-x64': 4.46.3 + '@rollup/rollup-linux-arm-gnueabihf': 4.46.3 + '@rollup/rollup-linux-arm-musleabihf': 4.46.3 + '@rollup/rollup-linux-arm64-gnu': 4.46.3 + '@rollup/rollup-linux-arm64-musl': 4.46.3 + '@rollup/rollup-linux-loongarch64-gnu': 4.46.3 + '@rollup/rollup-linux-ppc64-gnu': 4.46.3 + '@rollup/rollup-linux-riscv64-gnu': 4.46.3 + '@rollup/rollup-linux-riscv64-musl': 4.46.3 + '@rollup/rollup-linux-s390x-gnu': 4.46.3 + '@rollup/rollup-linux-x64-gnu': 4.46.3 + '@rollup/rollup-linux-x64-musl': 4.46.3 + '@rollup/rollup-win32-arm64-msvc': 4.46.3 + '@rollup/rollup-win32-ia32-msvc': 4.46.3 + '@rollup/rollup-win32-x64-msvc': 4.46.3 + fsevents: 2.3.3 + + rou3@0.7.3: {} + + rrweb-cssom@0.6.0: {} + + rrweb-cssom@0.7.1: {} + + run-applescript@7.0.0: {} + + run-parallel@1.2.0: + dependencies: + queue-microtask: 1.2.3 + + rw@1.3.3: {} + + safe-array-concat@1.1.3: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.3 + get-intrinsic: 1.2.6 + has-symbols: 1.1.0 + isarray: 2.0.5 + + safe-buffer@5.1.2: {} + + safe-buffer@5.2.1: {} + + safe-push-apply@1.0.0: + dependencies: + es-errors: 1.3.0 + isarray: 2.0.5 + + safe-regex-test@1.1.0: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + is-regex: 1.2.1 + + safer-buffer@2.1.2: {} + + sax@1.4.1: + optional: true + + saxes@6.0.0: + dependencies: + xmlchars: 2.2.0 + + scroll-into-view-if-needed@2.2.31: + dependencies: + compute-scroll-into-view: 1.0.20 + + scslre@0.3.0: + dependencies: + '@eslint-community/regexpp': 4.12.1 + refa: 0.12.1 + regexp-ast-analysis: 0.7.1 + + scule@1.3.0: {} + + semver@5.7.2: {} + + semver@6.3.1: {} + + semver@7.6.0: + dependencies: + lru-cache: 6.0.0 + + semver@7.6.3: {} + + semver@7.7.2: {} + + set-function-length@1.2.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.6 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + + set-function-name@2.0.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.2 + + set-value@2.0.1: + dependencies: + extend-shallow: 2.0.1 + is-extendable: 0.1.1 + is-plain-object: 2.0.4 + split-string: 3.1.0 + + shallow-equal@1.2.1: {} + + shebang-command@1.2.0: + dependencies: + shebang-regex: 1.0.0 + + shebang-command@2.0.0: + dependencies: + shebang-regex: 3.0.0 + + shebang-regex@1.0.0: {} + + shebang-regex@3.0.0: {} + + shell-quote@1.8.2: {} + + side-channel-list@1.0.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.3 + + side-channel-map@1.0.1: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + get-intrinsic: 1.2.6 + object-inspect: 1.13.3 + + side-channel-weakmap@1.0.2: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + get-intrinsic: 1.2.6 + object-inspect: 1.13.3 + side-channel-map: 1.0.1 + + side-channel@1.1.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.3 + side-channel-list: 1.0.0 + side-channel-map: 1.0.1 + side-channel-weakmap: 1.0.2 + + siginfo@2.0.0: {} + + signal-exit@3.0.7: {} + + signal-exit@4.1.0: {} + + sirv@3.0.1: + dependencies: + '@polka/url': 1.0.0-next.28 + mrmime: 2.0.0 + totalist: 3.0.1 + + sisteransi@1.0.5: {} + + size-sensor@1.0.2: {} + + sjcl@1.0.9: {} + + slice-ansi@5.0.0: + dependencies: + ansi-styles: 6.2.1 + is-fullwidth-code-point: 4.0.0 + + sm-crypto@0.4.0: + dependencies: + jsbn: 1.1.0 + + sort-asc@0.2.0: {} + + sort-desc@0.2.0: {} + + sort-object@3.0.3: + dependencies: + bytewise: 1.1.0 + get-value: 2.0.6 + is-extendable: 0.1.1 + sort-asc: 0.2.0 + sort-desc: 0.2.0 + union-value: 1.0.1 + + source-map-js@1.2.1: {} + + source-map-support@0.3.3: + dependencies: + source-map: 0.1.32 + + source-map-support@0.5.21: + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + + source-map@0.1.32: + dependencies: + amdefine: 1.0.1 + + source-map@0.5.7: {} + + source-map@0.6.1: {} + + spdx-correct@3.2.0: + dependencies: + spdx-expression-parse: 3.0.1 + spdx-license-ids: 3.0.20 + + spdx-exceptions@2.5.0: {} + + spdx-expression-parse@3.0.1: + dependencies: + spdx-exceptions: 2.5.0 + spdx-license-ids: 3.0.20 + + spdx-expression-parse@4.0.0: + dependencies: + spdx-exceptions: 2.5.0 + spdx-license-ids: 3.0.20 + + spdx-license-ids@3.0.20: {} + + splaytree@3.1.2: {} + + split-string@3.1.0: + dependencies: + extend-shallow: 3.0.2 + + split2@3.2.2: + dependencies: + readable-stream: 3.6.2 + + split2@4.2.0: {} + + srvx@0.8.7: + dependencies: + cookie-es: 2.0.0 + + stackback@0.0.2: {} + + std-env@3.8.0: {} + + std-env@3.9.0: {} + + string-argv@0.3.2: {} + + string-width@4.2.3: + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + + string-width@5.1.2: + dependencies: + eastasianwidth: 0.2.0 + emoji-regex: 9.2.2 + strip-ansi: 7.1.0 + + string.prototype.padend@3.1.6: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.8 + es-object-atoms: 1.0.0 + + string.prototype.trim@1.2.10: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.3 + define-data-property: 1.1.4 + define-properties: 1.2.1 + es-abstract: 1.23.8 + es-object-atoms: 1.0.0 + has-property-descriptors: 1.0.2 + + string.prototype.trimend@1.0.9: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.3 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + + string.prototype.trimstart@1.0.8: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + + string_decoder@0.10.31: {} + + string_decoder@1.1.1: + dependencies: + safe-buffer: 5.1.2 + + string_decoder@1.3.0: + dependencies: + safe-buffer: 5.2.1 + + strip-ansi@3.0.1: + dependencies: + ansi-regex: 2.1.1 + + strip-ansi@6.0.1: + dependencies: + ansi-regex: 5.0.1 + + strip-ansi@7.1.0: + dependencies: + ansi-regex: 6.1.0 + + strip-bom@3.0.0: {} + + strip-final-newline@2.0.0: {} + + strip-final-newline@3.0.0: {} + + strip-indent@3.0.0: + dependencies: + min-indent: 1.0.1 + + strip-indent@4.1.0: {} + + strip-json-comments@3.1.1: {} + + strip-literal@3.0.0: + dependencies: + js-tokens: 9.0.1 + + stylis@4.2.0: {} + + stylis@4.3.4: {} + + supercluster@7.1.5: + dependencies: + kdbush: 3.0.0 + + supercluster@8.0.1: + dependencies: + kdbush: 4.0.2 + + supports-color@2.0.0: {} + + supports-color@5.5.0: + dependencies: + has-flag: 3.0.0 + + supports-color@7.2.0: + dependencies: + has-flag: 4.0.0 + + supports-preserve-symlinks-flag@1.0.0: {} + + symbol-tree@3.2.4: {} + + synckit@0.6.2: + dependencies: + tslib: 2.8.1 + + synckit@0.9.3: + dependencies: + '@pkgr/core': 0.1.2 + tslib: 2.8.1 + + table-layout@1.0.2: + dependencies: + array-back: 4.0.2 + deep-extend: 0.6.0 + typical: 5.2.0 + wordwrapjs: 4.0.1 + + tapable@2.2.1: {} + + tape@4.17.0: + dependencies: + '@ljharb/resumer': 0.0.1 + '@ljharb/through': 2.3.13 + call-bind: 1.0.8 + deep-equal: 1.1.2 + defined: 1.0.1 + dotignore: 0.1.2 + for-each: 0.3.3 + glob: 7.2.3 + has: 1.0.4 + inherits: 2.0.4 + is-regex: 1.1.4 + minimist: 1.2.8 + mock-property: 1.0.3 + object-inspect: 1.12.3 + resolve: 1.22.10 + string.prototype.trim: 1.2.10 + + tar@6.2.1: + dependencies: + chownr: 2.0.0 + fs-minipass: 2.1.0 + minipass: 5.0.0 + minizlib: 2.1.2 + mkdirp: 1.0.4 + yallist: 4.0.0 + + terser@5.37.0: + dependencies: + '@jridgewell/source-map': 0.3.6 + acorn: 8.15.0 + commander: 2.20.3 + source-map-support: 0.5.21 + optional: true + + text-extensions@2.4.0: {} + + throttle-debounce@5.0.2: {} + + through2@0.4.2: + dependencies: + readable-stream: 1.0.34 + xtend: 2.1.2 + + through2@4.0.2: + dependencies: + readable-stream: 3.6.2 + + through@2.3.8: {} + + tinybench@2.9.0: {} + + tinyexec@0.3.2: {} + + tinyexec@1.0.1: {} + + tinyglobby@0.2.14: + dependencies: + fdir: 6.5.0(picomatch@4.0.2) + picomatch: 4.0.2 + + tinyglobby@0.2.15: + dependencies: + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + + tinypool@1.1.1: {} + + tinyqueue@2.0.3: {} + + tinyrainbow@2.0.0: {} + + tinyspy@4.0.3: {} + + to-regex-range@5.0.1: + dependencies: + is-number: 7.0.0 + + toml-eslint-parser@0.10.0: + dependencies: + eslint-visitor-keys: 3.4.3 + + totalist@3.0.1: {} + + tough-cookie@4.1.4: + dependencies: + psl: 1.15.0 + punycode: 2.3.1 + universalify: 0.2.0 + url-parse: 1.5.10 + + tr46@4.1.1: + dependencies: + punycode: 2.3.1 + + tr46@5.0.0: + dependencies: + punycode: 2.3.1 + + tree-kill@1.2.2: {} + + treeify@1.1.0: {} + + trim-newlines@3.0.1: {} + + ts-api-utils@2.1.0(typescript@5.8.3): + dependencies: + typescript: 5.8.3 + + ts-declaration-location@1.0.7(typescript@5.8.3): + dependencies: + picomatch: 4.0.3 + typescript: 5.8.3 + + ts-node@10.9.2(@types/node@20.19.17)(typescript@5.8.3): + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.11 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 20.19.17 + acorn: 8.14.0 + acorn-walk: 8.3.4 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 5.8.3 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + + tsdown@0.14.1(typescript@5.8.3)(vue-tsc@3.0.8(typescript@5.8.3)): + dependencies: + ansis: 4.1.0 + cac: 6.7.14 + chokidar: 4.0.3 + debug: 4.4.1 + diff: 8.0.2 + empathic: 2.0.0 + hookable: 5.5.3 + rolldown: 1.1.2 + rolldown-plugin-dts: 0.15.6(rolldown@1.1.2)(typescript@5.8.3)(vue-tsc@3.0.8(typescript@5.8.3)) + semver: 7.7.2 + tinyexec: 1.0.1 + tinyglobby: 0.2.14 + tree-kill: 1.2.2 + unconfig: 7.3.2 + optionalDependencies: + typescript: 5.8.3 + transitivePeerDependencies: + - '@typescript/native-preview' + - oxc-resolver + - supports-color + - vue-tsc + + tslib@1.14.1: {} + + tslib@2.3.0: {} + + tslib@2.8.1: {} + + tsx@3.14.0: + dependencies: + esbuild: 0.18.20 + get-tsconfig: 4.8.1 + source-map-support: 0.5.21 + optionalDependencies: + fsevents: 2.3.3 + + type-check@0.4.0: + dependencies: + prelude-ls: 1.2.1 + + type-fest@0.18.1: {} + + type-fest@0.6.0: {} + + type-fest@0.8.1: {} + + type-fest@1.4.0: {} + + type-fest@4.2.0: {} + + typed-array-buffer@1.0.3: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + is-typed-array: 1.1.15 + + typed-array-byte-length@1.0.3: + dependencies: + call-bind: 1.0.8 + for-each: 0.3.3 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + + typed-array-byte-offset@1.0.4: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + for-each: 0.3.3 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + reflect.getprototypeof: 1.0.9 + + typed-array-length@1.0.7: + dependencies: + call-bind: 1.0.8 + for-each: 0.3.3 + gopd: 1.2.0 + is-typed-array: 1.1.15 + possible-typed-array-names: 1.0.0 + reflect.getprototypeof: 1.0.9 + + typescript@5.8.3: {} + + typewise-core@1.2.0: {} + + typewise@1.0.3: + dependencies: + typewise-core: 1.2.0 + + typical@4.0.0: {} + + typical@5.2.0: {} + + ufo@1.5.4: {} + + ufo@1.6.1: {} + + uglify-js@2.8.29: + dependencies: + source-map: 0.5.7 + yargs: 3.10.0 + optionalDependencies: + uglify-to-browserify: 1.0.2 + + uglify-to-browserify@1.0.2: + optional: true + + unbox-primitive@1.1.0: + dependencies: + call-bound: 1.0.3 + has-bigints: 1.1.0 + has-symbols: 1.1.0 + which-boxed-primitive: 1.1.1 + + unconfig@7.3.2: + dependencies: + '@quansync/fs': 0.1.5 + defu: 6.1.4 + jiti: 2.6.0 + quansync: 0.2.11 + + unconfig@7.3.3: + dependencies: + '@quansync/fs': 0.1.5 + defu: 6.1.4 + jiti: 2.6.0 + quansync: 0.2.11 + + undici-types@6.21.0: {} + + unimport@4.2.0: + dependencies: + acorn: 8.15.0 + escape-string-regexp: 5.0.0 + estree-walker: 3.0.3 + local-pkg: 1.1.1 + magic-string: 0.30.17 + mlly: 1.7.4 + pathe: 2.0.3 + picomatch: 4.0.2 + pkg-types: 2.2.0 + scule: 1.3.0 + strip-literal: 3.0.0 + tinyglobby: 0.2.14 + unplugin: 2.3.6 + unplugin-utils: 0.2.5 + + union-value@1.0.1: + dependencies: + arr-union: 3.1.0 + get-value: 2.0.6 + is-extendable: 0.1.1 + set-value: 2.0.1 + + unist-util-is@6.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-stringify-position@4.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-visit-parents@6.0.1: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.0 + + unist-util-visit@5.0.0: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 + + universalify@0.2.0: {} + + universalify@2.0.1: {} + + unocss-preset-chinese@0.3.3(unocss@66.5.2(postcss@8.5.6)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))): + dependencies: + '@unocss/core': 0.62.4 + '@unocss/preset-mini': 0.62.4 + optionalDependencies: + unocss: 66.5.2(postcss@8.5.6)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1)) + + unocss-preset-ease@0.0.3(unocss@66.5.2(postcss@8.5.6)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1))): + optionalDependencies: + unocss: 66.5.2(postcss@8.5.6)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1)) + + unocss@66.5.2(postcss@8.5.6)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1)): + dependencies: + '@unocss/astro': 66.5.2(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1)) + '@unocss/cli': 66.5.2 + '@unocss/core': 66.5.2 + '@unocss/postcss': 66.5.2(postcss@8.5.6) + '@unocss/preset-attributify': 66.5.2 + '@unocss/preset-icons': 66.5.2 + '@unocss/preset-mini': 66.5.2 + '@unocss/preset-tagify': 66.5.2 + '@unocss/preset-typography': 66.5.2 + '@unocss/preset-uno': 66.5.2 + '@unocss/preset-web-fonts': 66.5.2 + '@unocss/preset-wind': 66.5.2 + '@unocss/preset-wind3': 66.5.2 + '@unocss/preset-wind4': 66.5.2 + '@unocss/transformer-attributify-jsx': 66.5.2 + '@unocss/transformer-compile-class': 66.5.2 + '@unocss/transformer-directives': 66.5.2 + '@unocss/transformer-variant-group': 66.5.2 + '@unocss/vite': 66.5.2(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1)) + optionalDependencies: + vite: rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1) + transitivePeerDependencies: + - postcss + - supports-color + + unplugin-auto-import@19.3.0(@vueuse/core@10.11.1(vue@3.5.22(typescript@5.8.3))): + dependencies: + local-pkg: 1.1.1 + magic-string: 0.30.17 + picomatch: 4.0.2 + unimport: 4.2.0 + unplugin: 2.3.6 + unplugin-utils: 0.2.5 + optionalDependencies: + '@vueuse/core': 10.11.1(vue@3.5.22(typescript@5.8.3)) + + unplugin-config@0.1.5(esbuild@0.25.10)(rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1)): + dependencies: + '@kirklin/logger': 0.0.2 + html-entities: 2.5.2 + jsdom: 24.1.3 + unplugin: 1.16.0 + optionalDependencies: + esbuild: 0.25.10 + vite: rolldown-vite@7.1.13(@types/node@20.19.17)(esbuild@0.25.10)(jiti@2.6.0)(less@4.4.1)(terser@5.37.0)(yaml@2.8.1) + transitivePeerDependencies: + - bufferutil + - canvas + - supports-color + - utf-8-validate + + unplugin-utils@0.2.5: + dependencies: + pathe: 2.0.3 + picomatch: 4.0.3 + + unplugin-utils@0.3.0: + dependencies: + pathe: 2.0.3 + picomatch: 4.0.3 + + unplugin-vue-components@29.1.0(@babel/parser@7.28.4)(vue@3.5.22(typescript@5.8.3)): + dependencies: + chokidar: 3.6.0 + debug: 4.4.3 + local-pkg: 1.1.2 + magic-string: 0.30.19 + mlly: 1.8.0 + tinyglobby: 0.2.15 + unplugin: 2.3.10 + unplugin-utils: 0.3.0 + vue: 3.5.22(typescript@5.8.3) + optionalDependencies: + '@babel/parser': 7.28.4 + transitivePeerDependencies: + - supports-color + + unplugin@1.16.0: + dependencies: + acorn: 8.14.0 + webpack-virtual-modules: 0.6.2 + + unplugin@2.3.10: + dependencies: + '@jridgewell/remapping': 2.3.5 + acorn: 8.15.0 + picomatch: 4.0.3 + webpack-virtual-modules: 0.6.2 + + unplugin@2.3.6: + dependencies: + '@jridgewell/remapping': 2.3.5 + acorn: 8.15.0 + picomatch: 4.0.3 + webpack-virtual-modules: 0.6.2 + + update-browserslist-db@1.1.1(browserslist@4.24.3): + dependencies: + browserslist: 4.24.3 + escalade: 3.2.0 + picocolors: 1.1.1 + + update-browserslist-db@1.1.3(browserslist@4.26.2): + dependencies: + browserslist: 4.26.2 + escalade: 3.2.0 + picocolors: 1.1.1 + + uri-js@4.4.1: + dependencies: + punycode: 2.3.1 + + url-parse@1.5.10: + dependencies: + querystringify: 2.2.0 + requires-port: 1.0.0 + + util-deprecate@1.0.2: {} + + v8-compile-cache-lib@3.0.1: {} + + validate-npm-package-license@3.0.4: + dependencies: + spdx-correct: 3.2.0 + spdx-expression-parse: 3.0.1 + + viewport-mercator-project@6.2.3: + dependencies: + '@babel/runtime': 7.26.0 + gl-matrix: 3.4.3 + + vite-node@3.2.4(@types/node@20.19.17)(jiti@2.6.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1): + dependencies: + cac: 6.7.14 + debug: 4.4.1 + es-module-lexer: 1.7.0 + pathe: 2.0.3 + vite: 7.1.2(@types/node@20.19.17)(jiti@2.6.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1) + transitivePeerDependencies: + - '@types/node' + - jiti + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - yaml + + vite@7.1.2(@types/node@20.19.17)(jiti@2.6.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1): + dependencies: + esbuild: 0.25.10 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + postcss: 8.5.6 + rollup: 4.46.3 + tinyglobby: 0.2.15 + optionalDependencies: + '@types/node': 20.19.17 + fsevents: 2.3.3 + jiti: 2.6.0 + less: 4.4.1 + lightningcss: 1.30.1 + terser: 5.37.0 + yaml: 2.8.1 + + vitest@3.2.4(@types/debug@4.1.12)(@types/node@20.19.17)(jiti@2.6.0)(jsdom@22.1.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1): + dependencies: + '@types/chai': 5.2.2 + '@vitest/expect': 3.2.4 + '@vitest/mocker': 3.2.4(vite@7.1.2(@types/node@20.19.17)(jiti@2.6.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1)) + '@vitest/pretty-format': 3.2.4 + '@vitest/runner': 3.2.4 + '@vitest/snapshot': 3.2.4 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 + chai: 5.3.1 + debug: 4.4.1 + expect-type: 1.2.2 + magic-string: 0.30.17 + pathe: 2.0.3 + picomatch: 4.0.2 + std-env: 3.9.0 + tinybench: 2.9.0 + tinyexec: 0.3.2 + tinyglobby: 0.2.14 + tinypool: 1.1.1 + tinyrainbow: 2.0.0 + vite: 7.1.2(@types/node@20.19.17)(jiti@2.6.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1) + vite-node: 3.2.4(@types/node@20.19.17)(jiti@2.6.0)(less@4.4.1)(lightningcss@1.30.1)(terser@5.37.0)(yaml@2.8.1) + why-is-node-running: 2.3.0 + optionalDependencies: + '@types/debug': 4.1.12 + '@types/node': 20.19.17 + jsdom: 22.1.0 + transitivePeerDependencies: + - jiti + - less + - lightningcss + - msw + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - yaml + + vscode-uri@3.0.8: {} + + vt-pbf@3.1.3: + dependencies: + '@mapbox/point-geometry': 0.1.0 + '@mapbox/vector-tile': 1.3.1 + pbf: 3.3.0 + + vue-component-type-helpers@2.2.0: {} + + vue-demi@0.14.10(vue@3.5.22(typescript@5.8.3)): + dependencies: + vue: 3.5.22(typescript@5.8.3) + + vue-eslint-parser@10.2.0(eslint@9.36.0(jiti@2.6.0)): + dependencies: + debug: 4.4.3 + eslint: 9.36.0(jiti@2.6.0) + eslint-scope: 8.4.0 + eslint-visitor-keys: 4.2.1 + espree: 10.4.0 + esquery: 1.6.0 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color + + vue-flow-layout@0.2.0: {} + + vue-i18n@9.14.5(vue@3.5.22(typescript@5.8.3)): + dependencies: + '@intlify/core-base': 9.14.5 + '@intlify/shared': 9.14.5 + '@vue/devtools-api': 6.6.4 + vue: 3.5.22(typescript@5.8.3) + + vue-router@4.5.1(vue@3.5.22(typescript@5.8.3)): + dependencies: + '@vue/devtools-api': 6.6.4 + vue: 3.5.22(typescript@5.8.3) + + vue-tsc@3.0.8(typescript@5.8.3): + dependencies: + '@volar/typescript': 2.4.23 + '@vue/language-core': 3.0.8(typescript@5.8.3) + typescript: 5.8.3 + + vue-types@3.0.2(vue@3.5.22(typescript@5.8.3)): + dependencies: + is-plain-object: 3.0.1 + vue: 3.5.22(typescript@5.8.3) + + vue@3.5.22(typescript@5.8.3): + dependencies: + '@vue/compiler-dom': 3.5.22 + '@vue/compiler-sfc': 3.5.22 + '@vue/runtime-dom': 3.5.22 + '@vue/server-renderer': 3.5.22(vue@3.5.22(typescript@5.8.3)) + '@vue/shared': 3.5.22 + optionalDependencies: + typescript: 5.8.3 + + w3c-xmlserializer@4.0.0: + dependencies: + xml-name-validator: 4.0.0 + + w3c-xmlserializer@5.0.0: + dependencies: + xml-name-validator: 5.0.0 + + warning@4.0.3: + dependencies: + loose-envify: 1.4.0 + + web-worker-helper@0.0.3: {} + + webidl-conversions@7.0.0: {} + + webpack-virtual-modules@0.6.2: {} + + whatwg-encoding@2.0.0: + dependencies: + iconv-lite: 0.6.3 + + whatwg-encoding@3.1.1: + dependencies: + iconv-lite: 0.6.3 + + whatwg-mimetype@3.0.0: {} + + whatwg-mimetype@4.0.0: {} + + whatwg-url@12.0.1: + dependencies: + tr46: 4.1.1 + webidl-conversions: 7.0.0 + + whatwg-url@14.1.0: + dependencies: + tr46: 5.0.0 + webidl-conversions: 7.0.0 + + which-boxed-primitive@1.1.1: + dependencies: + is-bigint: 1.1.0 + is-boolean-object: 1.2.1 + is-number-object: 1.1.1 + is-string: 1.1.1 + is-symbol: 1.1.1 + + which-builtin-type@1.2.1: + dependencies: + call-bound: 1.0.3 + function.prototype.name: 1.1.8 + has-tostringtag: 1.0.2 + is-async-function: 2.0.0 + is-date-object: 1.1.0 + is-finalizationregistry: 1.1.1 + is-generator-function: 1.0.10 + is-regex: 1.2.1 + is-weakref: 1.1.0 + isarray: 2.0.5 + which-boxed-primitive: 1.1.1 + which-collection: 1.0.2 + which-typed-array: 1.1.18 + + which-collection@1.0.2: + dependencies: + is-map: 2.0.3 + is-set: 2.0.3 + is-weakmap: 2.0.2 + is-weakset: 2.0.4 + + which-typed-array@1.1.18: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.3 + for-each: 0.3.3 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + + which@1.3.1: + dependencies: + isexe: 2.0.0 + + which@2.0.2: + dependencies: + isexe: 2.0.0 + + why-is-node-running@2.3.0: + dependencies: + siginfo: 2.0.0 + stackback: 0.0.2 + + window-size@0.1.0: {} + + word-wrap@1.2.5: {} + + wordwrap@0.0.2: {} + + wordwrapjs@4.0.1: + dependencies: + reduce-flatten: 2.0.0 + typical: 5.2.0 + + wrap-ansi@7.0.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + + wrap-ansi@8.1.0: + dependencies: + ansi-styles: 6.2.1 + string-width: 5.1.2 + strip-ansi: 7.1.0 + + wrappy@1.0.2: {} + + ws@8.18.0: {} + + xml-name-validator@4.0.0: {} + + xml-name-validator@5.0.0: {} + + xmlchars@2.2.0: {} + + xtend@2.1.2: + dependencies: + object-keys: 0.4.0 + + y18n@5.0.8: {} + + yallist@3.1.1: {} + + yallist@4.0.0: {} + + yaml-eslint-parser@1.3.0: + dependencies: + eslint-visitor-keys: 3.4.3 + yaml: 2.6.1 + + yaml@1.10.2: {} + + yaml@2.3.1: {} + + yaml@2.6.1: {} + + yaml@2.8.1: {} + + yargs-parser@20.2.9: {} + + yargs-parser@21.1.1: {} + + yargs@17.7.2: + dependencies: + cliui: 8.0.1 + escalade: 3.2.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 + + yargs@3.10.0: + dependencies: + camelcase: 1.2.1 + cliui: 2.1.0 + decamelize: 1.2.0 + window-size: 0.1.0 + + yn@3.1.1: {} + + yocto-queue@0.1.0: {} + + zrender@6.0.0: + dependencies: + tslib: 2.3.0 + + zwitch@2.0.4: {} diff --git a/frontend/pnpm-workspace.yaml b/frontend/pnpm-workspace.yaml new file mode 100644 index 0000000..efc037a --- /dev/null +++ b/frontend/pnpm-workspace.yaml @@ -0,0 +1,2 @@ +onlyBuiltDependencies: + - esbuild diff --git a/frontend/public/_app.config.js b/frontend/public/_app.config.js new file mode 100644 index 0000000..e69de29 diff --git a/frontend/public/loading.js b/frontend/public/loading.js new file mode 100644 index 0000000..56eb290 --- /dev/null +++ b/frontend/public/loading.js @@ -0,0 +1,211 @@ +/** + * loading 占位 + * 解决首次加载时白屏的问题 + */ +(function () { + const div = document.createElement('div') + const body = document.querySelector('body') + body.appendChild(div) + div.setAttribute('id', 'loading-app') + if (div && div.innerHTML === '') { + div.innerHTML = ` + + +
+
+
+ + + + + + +
+
+
+ 正在加载资源 +
+
+ 初次加载资源可能需要较多时间 请耐心等待 +
+
+ ` + } +})() diff --git a/frontend/public/logo.png b/frontend/public/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..09fad74fc98fa065db3093850dd9f748ee8e0601 GIT binary patch literal 81432 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 M07*qoM6N<$g5Xl&tN;K2 literal 0 HcmV?d00001 diff --git a/frontend/scripts/dir-tree.ts b/frontend/scripts/dir-tree.ts new file mode 100644 index 0000000..989c08d --- /dev/null +++ b/frontend/scripts/dir-tree.ts @@ -0,0 +1,23 @@ +import dirTree from 'directory-tree' +import treeify from 'treeify' + +// eslint-disable-next-line node/prefer-global/process +const filteredTree = dirTree(process.cwd(), { + exclude: [/node_modules/, /\.git/, /\.vscode/, /\.idea/], +}) + +const children = filteredTree.children ?? [] + +function genObj(children: any[]) { + const obj: Record = {} + for (const child of children) + obj[child.name] = (child?.children && child.children.length > 0) ? genObj(child.children) : null + + return obj +} + +const obj = genObj(children) + +const md = treeify.asTree(obj, true, null) + +console.log(md) diff --git a/frontend/scripts/gen-unocss.ts b/frontend/scripts/gen-unocss.ts new file mode 100644 index 0000000..27cf8d1 --- /dev/null +++ b/frontend/scripts/gen-unocss.ts @@ -0,0 +1,35 @@ +import path from 'node:path' +import { theme } from 'ant-design-vue' +import fsExtra from 'fs-extra' +import lodash from 'lodash' + +const { defaultAlgorithm, defaultSeed } = theme + +const mapToken = defaultAlgorithm(defaultSeed) + +function formatKey(key: string, prefixCls: string) { + return `${prefixCls}${lodash.kebabCase(key)}` +} +const prefixCls = '--pro-ant-' + +const variables: { + colors: Record +} = { + colors: {}, +} +let colorTheme = '' +for (const key in mapToken) { + if (key.startsWith('color')) { + const cssVar = formatKey(key, prefixCls) + const colors = variables.colors + const themeKey = lodash.camelCase(key.slice(5)) + colors[themeKey] = `var(${cssVar})` + colorTheme += `${themeKey}\n` + } +} + +// eslint-disable-next-line node/prefer-global/process +fsExtra.outputFile(path.resolve(process.cwd(), './themes/antd-uno-theme.json'), JSON.stringify(variables, null, 2)) + +// eslint-disable-next-line node/prefer-global/process +fsExtra.outputFile(path.resolve(process.cwd(), './themes/color-theme-var.md'), colorTheme) diff --git a/frontend/scripts/to-js.ts b/frontend/scripts/to-js.ts new file mode 100644 index 0000000..7f89214 --- /dev/null +++ b/frontend/scripts/to-js.ts @@ -0,0 +1,17 @@ +import { resolve } from 'node:path' +import * as process from 'node:process' +import { transformSync } from 'esbuild' +import fsExtra from 'fs-extra' + +const themeConfig = resolve(process.cwd(), './src/config/default-setting.ts') +const code = fsExtra.readFileSync(themeConfig, 'utf-8') + +function toJs(code: string) { + const res = transformSync(code, { + target: 'esnext', + loader: 'ts', + }) + console.log(res.code) +} + +toJs(code) diff --git a/frontend/servers/routes/401.ts b/frontend/servers/routes/401.ts new file mode 100644 index 0000000..e871566 --- /dev/null +++ b/frontend/servers/routes/401.ts @@ -0,0 +1,10 @@ +import { defineEventHandler } from 'h3' + +export default defineEventHandler((event) => { + // setResponseStatus(event, 401) + event.res.status = 401 + return { + code: 401, + msg: '请先登录', + } +}) diff --git a/frontend/servers/routes/403.ts b/frontend/servers/routes/403.ts new file mode 100644 index 0000000..64e774f --- /dev/null +++ b/frontend/servers/routes/403.ts @@ -0,0 +1,9 @@ +import { defineEventHandler } from 'h3' + +export default defineEventHandler((event) => { + event.res.status = 403 + return { + code: 403, + msg: '请先登录', + } +}) diff --git a/frontend/servers/routes/500.ts b/frontend/servers/routes/500.ts new file mode 100644 index 0000000..960d086 --- /dev/null +++ b/frontend/servers/routes/500.ts @@ -0,0 +1,9 @@ +import { defineEventHandler } from 'h3' + +export default defineEventHandler((event) => { + event.res.status = 500 + return { + code: 500, + msg: '服务器错误', + } +}) diff --git a/frontend/servers/routes/index.ts b/frontend/servers/routes/index.ts new file mode 100644 index 0000000..e2d7d57 --- /dev/null +++ b/frontend/servers/routes/index.ts @@ -0,0 +1,5 @@ +import { defineEventHandler } from 'h3' + +export default defineEventHandler(() => { + return { nitro: 'Hello Antdv Pro' } +}) diff --git a/frontend/servers/routes/list/[id].delete.ts b/frontend/servers/routes/list/[id].delete.ts new file mode 100644 index 0000000..b9d008b --- /dev/null +++ b/frontend/servers/routes/list/[id].delete.ts @@ -0,0 +1,16 @@ +import { defineEventHandler } from 'h3' + +export default defineEventHandler((event) => { + const id = event.context.params?.id as any + if (typeof id !== 'number') { + event.res.status = 403 + return { + code: 403, + msg: '删除失败', + } + } + return { + code: 200, + msg: '删除成功', + } +}) diff --git a/frontend/servers/routes/list/basic-list.post.ts b/frontend/servers/routes/list/basic-list.post.ts new file mode 100644 index 0000000..da0ded0 --- /dev/null +++ b/frontend/servers/routes/list/basic-list.post.ts @@ -0,0 +1,80 @@ +import dayjs from 'dayjs' +import { defineEventHandler } from 'h3' +import { cloneDeep } from 'lodash-es' + +export default defineEventHandler(async (_event) => { + const dataList = [ + { + title: 'Aipay', + link: 'https://gw.alipayobjects.com/zos/rmsportal/WdGqmHpayyMjiEhcKoVE.png', + percent: 57, + content: '一生那么短,遗忘又那么漫长', + }, + { + title: 'Ant Design Vue', + link: 'https://www.antdv.com/assets/logo.1ef800a8.svg', + percent: 60, + status: 'active', + content: '只有在梦想中,人才能真正自由', + }, + { + title: 'Vue', + link: 'https://gw.alipayobjects.com/zos/rmsportal/ComBAopevLwENQdKWiIn.png', + percent: 70, + status: 'exception', + content: '生命就像一盒巧克力,结果往往出人意料', + }, + { + title: 'Vite', + link: 'https://cn.vitejs.dev/logo.svg', + percent: 100, + status: 'active', + content: '有时,你必须进入别人的世界去发现自己的世界缺少什么', + }, + { + title: 'React', + link: 'https://gw.alipayobjects.com/zos/rmsportal/kZzEzemZyKLKFsojXItE.png', + percent: 50, + status: 'exception', + content: '希望是件美丽的东西,也许是最好的东西', + }, + { + title: 'Antdv Pro', + link: '/logo.svg', + percent: 80, + status: 'active', + content: '人并非生来就伟大,而是越活越伟大', + }, + { + title: 'Webpack', + link: 'https://gw.alipayobjects.com/zos/rmsportal/nxkuOJlFJuAUhzlMTCEe.png', + percent: 58, + content: '不管何时何地,做你想做的事永远都不嫌晚', + }, + { + title: 'Angular', + link: 'https://gw.alipayobjects.com/zos/rmsportal/zOsKZmFRdUtvpqCImOVY.png', + percent: 70, + status: 'active', + content: '你要一直不停地往前走,不然你不会知道生活还会给你什么', + }, + ] + + const data: any[] = [] + + // 数据复制 + for (let i = 0; i < 1000; i++) { + const arr = cloneDeep(dataList) + data.push(...arr) + } + + // 配置任务时间 + for (let i = 0; i < data.length; i++) + data[i].start = dayjs().subtract(i, 'hour').format('YYYY-MM-DD HH:mm') + + return { + code: 200, + msg: '获取成功', + data, + } +}) diff --git a/frontend/servers/routes/list/consult-list.post.ts b/frontend/servers/routes/list/consult-list.post.ts new file mode 100644 index 0000000..d3f7606 --- /dev/null +++ b/frontend/servers/routes/list/consult-list.post.ts @@ -0,0 +1,82 @@ +import dayjs from 'dayjs' +import { defineEventHandler, readBody } from 'h3' + +enum STATUS { + OFF = '0', + RUNNING = '1', + ONLINE = '2', + ERROR = '3', +} + +export default defineEventHandler(async (_event) => { + const body = (await readBody(_event)) as { name?: string } + + const dataList = [ + { + id: 1, + name: '第一个任务', + callNo: 2000, + desc: '一生那么短,遗忘又那么漫长', + status: STATUS.ONLINE, + updatedAt: dayjs().format('YYYY-MM-DD HH:mm'), + }, + { + id: 2, + name: 'Ant Design Vue', + callNo: 200, + desc: '有时,你必须进入别人的世界去发现自己的世界缺少什么', + status: STATUS.OFF, + updatedAt: dayjs().format('YYYY-MM-DD HH:mm'), + }, + { + id: 3, + name: 'Vue', + callNo: 2010, + desc: '一生那么短,遗忘又那么漫长', + status: STATUS.ERROR, + updatedAt: dayjs().format('YYYY-MM-DD HH:mm'), + }, + { + id: 4, + name: 'Vite', + callNo: 20300, + desc: '希望是件美丽的东西,也许是最好的东西', + status: STATUS.ERROR, + updatedAt: dayjs().format('YYYY-MM-DD HH:mm'), + }, + { + id: 5, + name: 'React', + callNo: 2000, + desc: '人并非生来就伟大,而是越活越伟大', + status: STATUS.ONLINE, + updatedAt: dayjs().format('YYYY-MM-DD HH:mm'), + }, + { + id: 6, + name: 'Antdv Pro', + callNo: 2000, + desc: '不管何时何地,做你想做的事永远都不嫌晚', + status: STATUS.OFF, + updatedAt: dayjs().format('YYYY-MM-DD HH:mm'), + }, + { + id: 7, + name: 'Webpack', + callNo: 2000, + desc: '你要一直不停地往前走,不然你不会知道生活还会给你什么', + status: STATUS.ONLINE, + updatedAt: dayjs().format('YYYY-MM-DD HH:mm'), + }, + ] + const data = dataList.filter((i) => { + if (body.name) + return body.name === i.name + else return true + }) + return { + code: 200, + msg: '获取成功', + data, + } +}) diff --git a/frontend/servers/routes/list/create.post.ts b/frontend/servers/routes/list/create.post.ts new file mode 100644 index 0000000..100eeb4 --- /dev/null +++ b/frontend/servers/routes/list/create.post.ts @@ -0,0 +1,10 @@ +import { defineEventHandler, readBody } from 'h3' + +export default defineEventHandler(async (event) => { + const body = await readBody(event) + console.log(body) + return { + code: 200, + msg: '创建成功', + } +}) diff --git a/frontend/servers/routes/list/crud-table.post.ts b/frontend/servers/routes/list/crud-table.post.ts new file mode 100644 index 0000000..f469e68 --- /dev/null +++ b/frontend/servers/routes/list/crud-table.post.ts @@ -0,0 +1,63 @@ +import { defineEventHandler, readBody } from 'h3' + +export default defineEventHandler(async (_event) => { + const body = await readBody(_event) + + const dataList = [ + { + id: 1, + name: '第一个任务', + value: '2000', + remark: '一生那么短,遗忘又那么漫长', + }, + { + id: 2, + name: 'Ant Design Vue', + value: '200', + remark: '有时,你必须进入别人的世界去发现自己的世界缺少什么', + }, + { + id: 3, + name: 'Vue', + value: '2010', + remark: '一生那么短,遗忘又那么漫长', + }, + { + id: 4, + name: 'Vite', + value: '20300', + remark: '希望是件美丽的东西,也许是最好的东西', + }, + { + id: 5, + name: 'React', + value: '2000', + remark: '人并非生来就伟大,而是越活越伟大', + }, + { + id: 6, + name: 'Antdv Pro', + value: '2000', + remark: '不管何时何地,做你想做的事永远都不嫌晚', + }, + { + id: 7, + name: 'Webpack', + value: '2000', + remark: '你要一直不停地往前走,不然你不会知道生活还会给你什么', + }, + ] + const data = dataList.filter((i) => { + if (body.name) + return body.name === i.name + else return true + }) + return { + code: 200, + msg: '获取成功', + data: { + records: data, + total: data.length, + }, + } +}) diff --git a/frontend/servers/routes/list/index.post.ts b/frontend/servers/routes/list/index.post.ts new file mode 100644 index 0000000..7fb52d2 --- /dev/null +++ b/frontend/servers/routes/list/index.post.ts @@ -0,0 +1,22 @@ +import { defineEventHandler, readBody } from 'h3' + +export default defineEventHandler(async (event) => { + const body = await readBody(event) + + const dataList = [] + for (let i = 0; i < 10; i++) { + const item = { + id: i + 1, + title: `${body.title ?? '测试'}_${i}`, + username: `${body.username ?? 'test'}_${i}`, + password: `${body.username ?? 'test'}_pass_${i}`, + } + dataList.push(item) + } + + return { + code: 200, + msg: '获取成功', + data: dataList, + } +}) diff --git a/frontend/servers/routes/list/index.put.ts b/frontend/servers/routes/list/index.put.ts new file mode 100644 index 0000000..62f63a5 --- /dev/null +++ b/frontend/servers/routes/list/index.put.ts @@ -0,0 +1,8 @@ +import { defineEventHandler } from 'h3' + +export default defineEventHandler(async (_event) => { + return { + code: 200, + msg: '编辑成功', + } +}) diff --git a/frontend/servers/routes/login.post.ts b/frontend/servers/routes/login.post.ts new file mode 100644 index 0000000..3854247 --- /dev/null +++ b/frontend/servers/routes/login.post.ts @@ -0,0 +1,33 @@ +import { defineEventHandler, readBody } from 'h3' + +export default defineEventHandler(async (event) => { + const body: any = await readBody(event) + const { type } = body + const success = { + code: 200, + data: { + token: '1234567890', + }, + msg: '登录成功', + } + if (type !== 'mobile') { + // eslint-disable-next-line node/prefer-global/buffer + success.data.token = Buffer.from(body.username).toString('base64') + // 判断用户名密码是否正确 + if (body.username === 'admin' && body.password === 'admin') + return success + + if (body.username === 'user' && body.password === 'user') + return success + } + else { + return success + } + + // setResponseStatus(event, 403) + event.res.status = 403 + return { + code: 401, + msg: '用户名或密码错误', + } +}) diff --git a/frontend/servers/routes/logout.ts b/frontend/servers/routes/logout.ts new file mode 100644 index 0000000..38802b5 --- /dev/null +++ b/frontend/servers/routes/logout.ts @@ -0,0 +1,8 @@ +import { defineEventHandler } from 'h3' + +export default defineEventHandler(() => { + return { + code: 200, + msg: 'success', + } +}) diff --git a/frontend/servers/routes/menu/index.ts b/frontend/servers/routes/menu/index.ts new file mode 100644 index 0000000..171da7c --- /dev/null +++ b/frontend/servers/routes/menu/index.ts @@ -0,0 +1,474 @@ +import { defineEventHandler } from 'h3' + +const menuData = [ + { + id: 2, + parentId: null, + title: '分析页', + icon: 'DashboardOutlined', + component: '/dashboard/analysis', + path: '/dashboard/analysis', + name: 'DashboardAnalysis', + keepAlive: true, + locale: 'menu.dashboard.analysis', + }, + { + id: 1, + parentId: null, + title: '仪表盘', + icon: 'DashboardOutlined', + component: 'RouteView', + redirect: '/dashboard/analysis', + path: '/dashboard', + name: 'Dashboard', + locale: 'menu.dashboard', + }, + { + id: 3, + parentId: null, + title: '表单页', + icon: 'FormOutlined', + component: 'RouteView', + redirect: '/form/basic', + path: '/form', + name: 'Form', + locale: 'menu.form', + }, + { + id: 5, + parentId: null, + title: '链接', + icon: 'LinkOutlined', + component: 'RouteView', + redirect: '/link/iframe', + path: '/link', + name: 'Link', + locale: 'menu.link', + + }, + { + id: 6, + parentId: 5, + title: 'AntDesign', + url: 'https://ant.design/', + component: 'Iframe', + path: '/link/iframe', + name: 'LinkIframe', + keepAlive: true, + locale: 'menu.link.iframe', + }, + { + id: 7, + parentId: 5, + title: 'AntDesignVue', + url: 'https://antdv.com/', + component: 'Iframe', + path: '/link/antdv', + name: 'LinkAntdv', + keepAlive: true, + locale: 'menu.link.antdv', + }, + { + id: 8, + parentId: 5, + path: 'https://www.baidu.com', + name: 'LinkExternal', + title: '跳转百度', + locale: 'menu.link.external', + }, + { + id: 9, + parentId: null, + title: '菜单', + icon: 'BarsOutlined', + component: 'RouteView', + path: '/menu', + redirect: '/menu/menu1', + name: 'Menu', + locale: 'menu.menu', + }, + { + id: 10, + parentId: 9, + title: '菜单1', + component: '/menu/menu1', + path: '/menu/menu1', + name: 'MenuMenu11', + keepAlive: true, + locale: 'menu.menu.menu1', + }, + { + id: 11, + parentId: 9, + title: '菜单2', + component: '/menu/menu2', + path: '/menu/menu2', + keepAlive: true, + locale: 'menu.menu.menu2', + }, + { + id: 12, + parentId: 9, + path: '/menu/menu3', + redirect: '/menu/menu3/menu1', + title: '菜单1-1', + component: 'RouteView', + locale: 'menu.menu.menu3', + }, + { + id: 13, + parentId: 12, + path: '/menu/menu3/menu1', + component: '/menu/menu-1-1/menu1', + title: '菜单1-1-1', + keepAlive: true, + locale: 'menu.menu3.menu1', + }, + { + id: 14, + parentId: 12, + path: '/menu/menu3/menu2', + component: '/menu/menu-1-1/menu2', + title: '菜单1-1-2', + keepAlive: true, + locale: 'menu.menu3.menu2', + }, + { + id: 15, + path: '/access', + component: 'RouteView', + redirect: '/access/common', + title: '权限模块', + name: 'Access', + parentId: null, + icon: 'ClusterOutlined', + locale: 'menu.access', + }, + { + id: 16, + parentId: 15, + path: '/access/common', + title: '通用权限', + name: 'AccessCommon', + component: '/access/common', + locale: 'menu.access.common', + }, + { + id: 17, + parentId: 15, + path: '/access/user', + title: '普通用户', + name: 'AccessUser', + component: '/access/user', + locale: 'menu.access.user', + }, + { + id: 19, + parentId: null, + title: '异常页', + icon: 'WarningOutlined', + component: 'RouteView', + redirect: '/exception/403', + path: '/exception', + name: 'Exception', + locale: 'menu.exception', + }, + { + id: 20, + parentId: 19, + path: '/exception/403', + title: '403', + name: '403', + component: '/exception/403', + locale: 'menu.exception.not-permission', + }, + { + id: 21, + parentId: 19, + path: '/exception/404', + title: '404', + name: '404', + component: '/exception/404', + locale: 'menu.exception.not-find', + }, + { + id: 22, + parentId: 19, + path: '/exception/500', + title: '500', + name: '500', + component: '/exception/500', + locale: 'menu.exception.server-error', + }, + { + id: 23, + parentId: null, + title: '结果页', + icon: 'CheckCircleOutlined', + component: 'RouteView', + redirect: '/result/success', + path: '/result', + name: 'Result', + locale: 'menu.result', + }, + { + id: 24, + parentId: 23, + path: '/result/success', + title: '成功页', + name: 'ResultSuccess', + component: '/result/success', + locale: 'menu.result.success', + }, + { + id: 25, + parentId: 23, + path: '/result/fail', + title: '失败页', + name: 'ResultFail', + component: '/result/fail', + locale: 'menu.result.fail', + }, + { + id: 26, + parentId: null, + title: '列表页', + icon: 'TableOutlined', + component: 'RouteView', + redirect: '/list/card-list', + path: '/list', + name: 'List', + locale: 'menu.list', + }, + { + id: 27, + parentId: 26, + path: '/list/card-list', + title: '卡片列表', + name: 'ListCard', + component: '/list/card-list', + locale: 'menu.list.card-list', + }, + { + id: 28, + parentId: null, + title: '详情页', + icon: 'ProfileOutlined', + component: 'RouteView', + redirect: '/profile/basic', + path: '/profile', + name: 'Profile', + locale: 'menu.profile', + }, + { + id: 29, + parentId: 28, + path: '/profile/basic', + title: '基础详情页', + name: 'ProfileBasic', + component: '/profile/basic/index', + locale: 'menu.profile.basic', + }, + { + id: 30, + parentId: 26, + path: '/list/search-list', + title: '搜索列表', + name: 'SearchList', + component: '/list/search-list', + locale: 'menu.list.search-list', + }, + { + id: 31, + parentId: 30, + path: '/list/search-list/articles', + title: '搜索列表(文章)', + name: 'SearchListArticles', + component: '/list/search-list/articles', + locale: 'menu.list.search-list.articles', + }, + { + id: 32, + parentId: 30, + path: '/list/search-list/projects', + title: '搜索列表(项目)', + name: 'SearchListProjects', + component: '/list/search-list/projects', + locale: 'menu.list.search-list.projects', + }, + { + id: 33, + parentId: 30, + path: '/list/search-list/applications', + title: '搜索列表(应用)', + name: 'SearchListApplications', + component: '/list/search-list/applications', + locale: 'menu.list.search-list.applications', + }, + { + id: 34, + parentId: 26, + path: '/list/basic-list', + title: '标准列表', + name: 'BasicCard', + component: '/list/basic-list', + locale: 'menu.list.basic-list', + }, + { + id: 35, + parentId: 28, + path: '/profile/advanced', + title: '高级详细页', + name: 'ProfileAdvanced', + component: '/profile/advanced/index', + locale: 'menu.profile.advanced', + }, + { + id: 4, + parentId: 3, + title: '基础表单', + component: '/form/basic-form/index', + path: '/form/basic-form', + name: 'FormBasic', + keepAlive: false, + locale: 'menu.form.basic-form', + }, + { + id: 36, + parentId: null, + title: '个人页', + icon: 'UserOutlined', + component: 'RouteView', + redirect: '/account/center', + path: '/account', + name: 'Account', + locale: 'menu.account', + }, + { + id: 37, + parentId: 36, + path: '/account/center', + title: '个人中心', + name: 'AccountCenter', + component: '/account/center', + locale: 'menu.account.center', + }, + { + id: 38, + parentId: 36, + path: '/account/settings', + title: '个人设置', + name: 'AccountSettings', + component: '/account/settings', + locale: 'menu.account.settings', + }, + { + id: 39, + parentId: 3, + title: '分步表单', + component: '/form/step-form/index', + path: '/form/step-form', + name: 'FormStep', + keepAlive: false, + locale: 'menu.form.step-form', + }, + { + id: 40, + parentId: 3, + title: '高级表单', + component: '/form/advanced-form/index', + path: '/form/advanced-form', + name: 'FormAdvanced', + keepAlive: false, + locale: 'menu.form.advanced-form', + }, + { + id: 41, + parentId: 26, + path: '/list/table-list', + title: '查询表格', + name: 'ConsultTable', + component: '/list/table-list', + locale: 'menu.list.consult-table', + }, + { + id: 42, + parentId: 1, + title: '监控页', + component: '/dashboard/monitor', + path: '/dashboard/monitor', + name: 'DashboardMonitor', + keepAlive: true, + locale: 'menu.dashboard.monitor', + }, + { + id: 43, + parentId: 1, + title: '工作台', + component: '/dashboard/workplace', + path: '/dashboard/workplace', + name: 'DashboardWorkplace', + keepAlive: true, + locale: 'menu.dashboard.workplace', + }, + { + id: 44, + parentId: 26, + path: '/list/crud-table', + title: '增删改查表格', + name: 'CrudTable', + component: '/list/crud-table', + locale: 'menu.list.crud-table', + }, + { + id: 45, + parentId: 9, + path: '/menu/menu4', + redirect: '/menu/menu4/menu1', + title: '菜单2-1', + component: 'RouteView', + locale: 'menu.menu.menu4', + }, + { + id: 46, + parentId: 45, + path: '/menu/menu4/menu1', + component: '/menu/menu-2-1/menu1', + title: '菜单2-1-1', + keepAlive: true, + locale: 'menu.menu4.menu1', + }, + { + id: 47, + parentId: 45, + path: '/menu/menu4/menu2', + component: '/menu/menu-2-1/menu2', + title: '菜单2-1-2', + keepAlive: true, + locale: 'menu.menu4.menu2', + }, +] + +export const accessMenuData = [ + { + id: 18, + parentId: 15, + path: '/access/admin', + title: '管理员', + name: 'AccessAdmin', + component: '/access/admin', + locale: 'menu.access.admin', + }, + +] + +export default defineEventHandler((event) => { + const token = event.req.headers.get('Authorization') + // eslint-disable-next-line node/prefer-global/buffer + const username = Buffer.from(token as any, 'base64').toString('utf-8') + return { + code: 200, + msg: '获取成功', + data: [...menuData, ...(username === 'admin' ? accessMenuData : [])], + } +}) diff --git a/frontend/servers/routes/test.delete.ts b/frontend/servers/routes/test.delete.ts new file mode 100644 index 0000000..0b8b401 --- /dev/null +++ b/frontend/servers/routes/test.delete.ts @@ -0,0 +1,8 @@ +import { defineEventHandler } from 'h3' + +export default defineEventHandler(() => { + return { + code: 200, + msg: 'delete', + } +}) diff --git a/frontend/servers/routes/test.post.ts b/frontend/servers/routes/test.post.ts new file mode 100644 index 0000000..7402bf2 --- /dev/null +++ b/frontend/servers/routes/test.post.ts @@ -0,0 +1,8 @@ +import { defineEventHandler } from 'h3' + +export default defineEventHandler(() => { + return { + code: 200, + msg: 'post', + } +}) diff --git a/frontend/servers/routes/test.put.ts b/frontend/servers/routes/test.put.ts new file mode 100644 index 0000000..6244767 --- /dev/null +++ b/frontend/servers/routes/test.put.ts @@ -0,0 +1,8 @@ +import { defineEventHandler } from 'h3' + +export default defineEventHandler(() => { + return { + code: 200, + msg: 'put', + } +}) diff --git a/frontend/servers/routes/user/info.ts b/frontend/servers/routes/user/info.ts new file mode 100644 index 0000000..0bd1621 --- /dev/null +++ b/frontend/servers/routes/user/info.ts @@ -0,0 +1,24 @@ +import { defineEventHandler } from 'h3' + +export default defineEventHandler((event) => { + const token = event.req.headers.get('Authorization') + // eslint-disable-next-line node/prefer-global/buffer + const username = Buffer.from(token, 'base64').toString('utf-8') + if (!token) { + return { + code: 401, + msg: '登录失效', + } + } + return { + code: 200, + msg: '获取成功', + data: { + id: 1, + username, + nickname: username === 'admin' ? '超级管理员' : '普通用户', + avatar: 'https://gw.alipayobjects.com/zos/rmsportal/BiazfanxmamNRoxxVxka.png', + roles: username === 'admin' ? ['ADMIN'] : ['USER'], + }, + } +}) diff --git a/frontend/src/App.vue b/frontend/src/App.vue new file mode 100644 index 0000000..cee6ed8 --- /dev/null +++ b/frontend/src/App.vue @@ -0,0 +1,19 @@ + + + diff --git a/frontend/src/api/accident/dict-list.ts b/frontend/src/api/accident/dict-list.ts new file mode 100644 index 0000000..0bf36a4 --- /dev/null +++ b/frontend/src/api/accident/dict-list.ts @@ -0,0 +1,76 @@ +export interface IncidentListParams { + dict_id?: string; + item_value?: string; + pageSize?: number; + pageNum?: number; +} + +export interface accidentParams { + ticket_id?: string; + vin?: string; + carline?: string; + model?: string; + labels?: string; + accident_level?: string; + bmbs_name?: string; + rdca_reporter?: string; + software_version?: string; + affects_versions?: string; + components?: string; + fix_versions?: string; + case_description?: string; + fo_solution?: string; + assignee_name?: string; + occur_datetime?: string; + subtasks?: string; + linked_work_items?: string; +} + +export async function getDictDataApi(params: IncidentListParams) { + return usePost('/accident/item-list', params) +} + + +export async function getAllDictCodeApi() { + return useGet('/accident/all_dict_code') +} + + +export async function insertDictTypetApi(params: IncidentListParams) { + return usePost('/accident/insert-dict', params) +} + + +export async function insertAccidentApi(params: accidentParams) { + return usePost('/accident/insert-accident', params) +} + + +export async function getAccidentRecordApi(params: any) { + return usePost('/accident/get-accident-record', params) +} + + +export async function getAccidentByIdApi(params: number) { + return usePost('/accident/get-accident-by-id', params) +} + + +export async function updataItemByIdApi(params: any) { + return usePost('/accident/update-item', params) +} + + +export async function bingImageApi(params: any) { + return usePost('/file_uploads/bind-image', params) +} + + +export function getImagesApi(case_id: number) { + return useGet(`/file_uploads/get-images/${case_id}`) +} + + +export async function getSecretKey() { + return useGet('/user/get_record') +} \ No newline at end of file diff --git a/frontend/src/api/common/login.ts b/frontend/src/api/common/login.ts new file mode 100644 index 0000000..5cef86b --- /dev/null +++ b/frontend/src/api/common/login.ts @@ -0,0 +1,37 @@ +export interface LoginParams { + username: string + password: string + type?: 'account' +} + +export interface LoginMobileParams { + mobile: string + code: string + type: 'mobile' +} + +export interface LoginResultModel { + token: string +} + +export function loginApi(params: LoginParams | LoginMobileParams) { + return usePost('/user/login', params, { + // 设置为false的时候不会携带token + token: false, + // 开发模式下使用自定义的接口 + customDev: true, + // 是否开启全局请求loading + loading: true, + }) +} + +// export function loginApi(params: any) { +// return usePost('/user/login', params, { +// token: false, +// loading: true, +// }) +// } + +export function logoutApi() { + return useGet('/logout') +} diff --git a/frontend/src/api/common/menu.ts b/frontend/src/api/common/menu.ts new file mode 100644 index 0000000..d2cf292 --- /dev/null +++ b/frontend/src/api/common/menu.ts @@ -0,0 +1,5 @@ +import type { MenuData } from '~@/layouts/basic-layout/typing' + +export function getRouteMenusApi() { + return useGet('/menu') +} diff --git a/frontend/src/api/common/user.ts b/frontend/src/api/common/user.ts new file mode 100644 index 0000000..616fb10 --- /dev/null +++ b/frontend/src/api/common/user.ts @@ -0,0 +1,11 @@ +export interface UserInfo { + id: number | string + username: string + nickname: string + avatar: string + roles?: (string | number)[] +} + +export function getUserInfoApi() { + return useGet('/user/info') +} diff --git a/frontend/src/api/dashboard/analysis.ts b/frontend/src/api/dashboard/analysis.ts new file mode 100644 index 0000000..13cb2f4 --- /dev/null +++ b/frontend/src/api/dashboard/analysis.ts @@ -0,0 +1,26 @@ +export interface ListResultModel { + id: number + title: string + username: string + password: string +} + +export type ListResultParams = Partial> + +export async function getListApi(params?: ListResultParams) { + return usePost('/list', params) +} + +export type CreateListParams = Partial> + +export async function createListApi(params: CreateListParams) { + return usePost('/list/create', params) +} + +export async function editListApi(params: ListResultModel) { + return usePut('/list', params) +} + +export async function delListApi(id: string | number) { + return useDelete(`/list/${id}`) +} diff --git a/frontend/src/api/list/basic-list.ts b/frontend/src/api/list/basic-list.ts new file mode 100644 index 0000000..433299b --- /dev/null +++ b/frontend/src/api/list/basic-list.ts @@ -0,0 +1,12 @@ +export interface ListResultModel { + id: number + title: string + username: string + password: string +} + +export type ListResultParams = Partial> + +export async function getListApi(params?: ListResultParams) { + return usePost('/list/basic-list', params) +} diff --git a/frontend/src/api/list/crud-table.ts b/frontend/src/api/list/crud-table.ts new file mode 100644 index 0000000..38db5bf --- /dev/null +++ b/frontend/src/api/list/crud-table.ts @@ -0,0 +1,30 @@ +interface CrudTableModel { + id?: number + /** + * 名称 + */ + name: string + /** + * 值 + */ + value: string + /** + * 描述 + */ + remark?: string +} + +type CrudTableParams = Partial> + +export async function getListApi(params?: CrudTableParams) { + return usePost('/list/crud-table', params) +} + +export async function deleteApi(id: string | number) { + return useDelete(`/list/${id}`) +} + +export type { + CrudTableModel, + CrudTableParams, +} diff --git a/frontend/src/api/list/table-list.ts b/frontend/src/api/list/table-list.ts new file mode 100644 index 0000000..dd11a52 --- /dev/null +++ b/frontend/src/api/list/table-list.ts @@ -0,0 +1,46 @@ +import type { STATUS } from '~@/utils/constant' + +interface ConsultTableModel { + id: number + /** + * 服务名称 + */ + name: string + /** + * 服务调用次数 + */ + callNo: 805 + /** + * 描述 + */ + desc: string + /** + * 状态 + */ + status: STATUS + /** + * 上次调用时间 + */ + updatedAt: string + + // 分页 + current?: number + // size + pageSize?: number +} + +type ConsultTableParams = Partial> + +export async function getListApi(params?: ConsultTableParams) { + return usePost('/list/consult-list', params) +} + +export async function deleteApi(id: string | number) { + return useDelete(`/list/${id}`) +} + +export type { + ConsultTableModel, + ConsultTableParams, + STATUS, +} diff --git a/frontend/src/api/oauth/login.ts b/frontend/src/api/oauth/login.ts new file mode 100644 index 0000000..fefe252 --- /dev/null +++ b/frontend/src/api/oauth/login.ts @@ -0,0 +1,3 @@ +export function oauthLoginApi() { + return useGet('/login') +} \ No newline at end of file diff --git a/frontend/src/api/report/incident.ts b/frontend/src/api/report/incident.ts new file mode 100644 index 0000000..bea433d --- /dev/null +++ b/frontend/src/api/report/incident.ts @@ -0,0 +1,23 @@ +export interface IncidentListParams { + startTime?: string; + endTime?: string; + pageSize?: number; + pageNum?: number; + oneid?: string; + incident_time?: object; +} + + +export async function getIncidentListApi(params: IncidentListParams) { + return usePost('/incident/list', params, { timeout: 600000 }) +} + + +export async function getGen6IncidentListApi(params: IncidentListParams,code:string) { + return usePost('/gen6/list', params, { timeout: 600000 ,headers:{'X-Encrypted-Timestamp':code}}) //,headers:{'X-Encrypted-Timestamp':code} +} + + +export async function getGen5IncidentListApi(params: IncidentListParams,code:string) { + return usePost('/gen5/list', params, { timeout: 600000, headers:{'X-Encrypted-Timestamp':code} }) +} \ No newline at end of file diff --git a/frontend/src/api/test.ts b/frontend/src/api/test.ts new file mode 100644 index 0000000..b8e48f5 --- /dev/null +++ b/frontend/src/api/test.ts @@ -0,0 +1,23 @@ +export function test200() { + return useGet('/') +} + +export function test401() { + return useGet('/401') +} + +export function test500() { + return useGet('/500') +} + +export function testPut() { + return usePut('/test') +} + +export function testPost() { + return usePost('/test') +} + +export function testDelete() { + return useDelete('/test') +} diff --git a/frontend/src/assets/images/login-left.png b/frontend/src/assets/images/login-left.png new file mode 100644 index 0000000000000000000000000000000000000000..e679f778ee988f780fe76ed5d7066c855f254ad5 GIT binary patch literal 157398 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 +yQ*=~CvT&9*Qy ze!)S!W|5b|4r+zIKlQ~s+rvnEL+Y%z-o^B)!Q5e|d#Ww;%Qo|1P%Xa+<3Pk8m1_xP zJtIX30LkJxT5@QV z5xQ%6hgfyicn_w??Pn3>O5wzU9Fq1N;UO0umGt`R9dg;k(`bxU4|88q=ud+$80 z3#E@|NzAIf^H>0j??j;x&-K=DSn7&l>Au=&sn$=!Uxa%hcNg`p9T2AG3RuW#5*}GV z)ZI-f7~BcRkoFC_Oo0DA=zF9^dfl>fs~9{8O3I zU4f)oSc{o<6RIdRQzP-K1Jiq=oUY6|E)yzr!*qHGbsB_8UnrPb8LZH?{UOoe%XeHD z4|S+GyJ*Jzft;ZwJl{SP-GmsCo)HDA1VM7_^WN@ARWwr1{$A=?eeEmE#|WW)8tMyj zU>b^fG#OLtMBasJ^7e5@vfLB828<)~_1%B&z-#b-Bwb}(lW!MRVuUo47Dj_e=KzJ# zCDJX@-QBTKQUa1PV04Lemvl%;OLv!`H26OM-}_2m{#L}>C0E)sHYUN2*={U6_YWBcl>>Aq^$f&c;>nE-#P=Qw3}5) zff@ls2a&oyrGbWfyz+#||#eG8k0Mo#{vjGuy2^6qsdNWtrLSfcoS|4}4B zhzH_o3uh8+oTw1P6s{ozG|Gt4*Ck8=aI~>~gV4qfI$C5Qh5!J)`PV(aLP>p(s>JPd+cc%urV!=tU z%BA5uitm-4W34(hY0;d!X*fMfL_0lxf>9PIRUAG7B{i;(CNfDy7EDc-T&nzY4x_$N z%EIx-EW{R4Iz&wOkNRKLGn~owqAbBuFMHkQN`MPmt#+M_OOrhVO zNYJ^@njTxFagY$j5jXKMTP^VjC>m1yr(R;3Y8O7PF3nyZmAt;cH>c;cucf5J&e5{m zU++CD@~r10yaj|Qa-+^gvhIzleF0RlAn&&t1c)Fgi&pjV4@R`RAD`utD$dr>L+t4PC9RTJE zsc%I%6%BvdZXg<6k*Q4L?KH_(>P2fR9u3a8Uu4h$EiidG*fDh*{+$meo6b-^BcJb+ z^6uKuCV%PS31~xJrcF58Gc1VKJQ9u0=qx z{b@}xXCQVbB_LS9s0M)oeoWiA&`P^eT+NY<9SL?h%&B$}&H|8YT&z?$o9dw; zW%0H~-U3vYwo13%Af6~}u?ZpVKzS3yU9dy;$iz>CgY@)z_RW5pyS^8|_|oid{^ZP`iKph_x_wO$%`0+uB; zYbr74!JNq^eqZ%6e#+0^(+D{$bISHysgR9t#|4?XC7MMW*7~0+z)vIpJEKSZqNQ;D z%@HHKSCuYV{?O2$d`2pJYFz^svD2f6A770bijIk+#0HL{oH%&DU7+_GS|qpELT&Y9 zOrN!V$+pogZriIhH;W`@d@m0+mGJnV8@{G)N@b7Ib9A?~J2?Dd^jOlN@ujTm-PT9m z1jGcCHDoSQ{%j2~2Y`tdL=D)FWcSlWIGlkhTmTnRwSCanYiXuY<5 z>2M-jn&1_BEHC>TYd-n=GEDOu74g7ieJC!6BHv>Xs>4aGQ+$cKkF8i`F=LUWurAi)+1(lb@QA z$`$7<#T&5Y^uhdao|Tp5Zx;%QO{!KeLd{$}ByEcAiWfmLvc+yTP!H~GerCZ_Z$4co zKq{Rrhi5WwzwO&*p=+M)te~Vq%tjb%vc8n*UG?c-xjTI-tu(Z>*=N<*utG7b&`HflTf8@o@Jqo`;awRiU20 zScF>3eWV2z4udnM#2=%BT)ifpXaYQH>b5MOnh~pB;r7eYXGf_JYMNjdtUbXm0M#GT zH;MWZp)6xV1?RWkPC}^FXrsEz5t&1@oZXm5U1P3O^_a)s92o%n9ClD?Q3xsN`VNG( z@>%Y;ioD`vUrTT0s@ZJL4jbP|pZ~p9tQNq`RgsI2ELF?os`xa8mjB6R?5>sVr(d4h z=;!6h05@H(G@p$+wKcSNfihkV!gGX7n0^Yc_{!YlrI4v0b)cdnHJF97$bJ5~r{Qz$ zr(hO^zsXj1wHA#dx@F21BJvTYBn9<%jI9bhFS>^;QczZw6gX1Kl4UT0Ei9wyPFDPz zKB8x{Tvq4@=DyDGzRR>HPNWPzO(BlV+l+@Q=E4v z;3oZ~n4aotFah-*FYNVKLe7$`FD2W#RA%e5KOa=Ld&@=T4q3watMc z-fK+xZ(*dKW44=hS`!r)7nj`2d%wv?t%}KH)%gUd#w0wI2|$!-(M7xLsHtS?&)aoIIES z>dG7E6jt+7y;*Ir=9()F+3;u51xbbr5tu#LUX9suYprolV0khF?)~m+a68sq5{X{X z-?grPb#`Id>bZyH+z{uKs|nM3+meZP6O}3Fr;zPUDEj`!O#n#Oa~1j{F&Gc>EoEOl zMZxr_f8$DV;C#ilA1anC&Q5Ej z%-iT%K=n@QHUSJ)A(cRvxF{KqXJpoU1f@vBZ?M(4b4 zCn*lMZvPM|R20Ly!c742YMbOMAe&XCg;1>Vp zDFkWbVoEP%GJVeHEdJ%%0$#E2lEfOu!^|iaMVpnx@&mXLrKR%}K-nfQ3Lou{_t4Wo zl+FUsEAYIUD_&i8-lNOc*skfq#Q)M2b0Eo8A*D-?b^=?I^i|Db_6GmKx&FsJk!u|) zlf!h;bcFP;sKjtZ>Ws(lTJ0&}XZP#V4`E%bHv*RAgfOG>>wSyu=O0(I)-!$pH=e6O zHIF5(S=Q!w=0114;TZSy<6vjxt7<8QRR28fYIce@brQ>tsjXvz(~x|vT8#ia&#m&Hilg=q4 zF9%UtN%(|7-adIKT1KpLIwJt^bH__?OkPDOBI zg$q9rV`~&uy}B4bmH!cJ9Eo9?73L;Qrg9jDV#Z44-XX$=vzK&L=CpPA`VMD2X^K#K zpWF1{1>$bwc`J*{z+94s_%9tYD1rp-m!H3s{e~^WNh*aTTX83dWHY($w_Uz7K1TB2 zF%7PKa7^G39PE8QV7vZj`uetV(N)UJyFo~TpuCXp-U--y39`hk8Msn>7=hMxUJC@T zFsWdDiI&&qj8cKwMXClh9IvuD{>(7Gz)f)kuZn4<*v^T$& zR$>W9ByB|14bFDPI){dIpVYfMrQ^VGKz2OeD}WF>WZ{pNqWT6rUR)NL8Z-{|d=o2; zX$b_7Cb%8jaZ?5bNpvL6)~ln6RLBIZ_^G51Pj)2cOFKGXg9Djj#M~b_4>s$p`hj6n z%(rf#euJYyk*tCthh`xax0{sWC2!m}sJ8S+G92t;qbcGN3 zJX8a*FbT3pfGx(tqa^tJ@bc0t_$$$T$aZQ*%;3YFWHfG5m#g9LdSKQ9(5-m(sLWN2 z;m0`o&jzpAumCJ_I{b^nzB&*)N+yojDfZ1q zbw(@x{#NYD1f2xe^$*xGKWx<5d>PSXZ4H)tH+J;tlQbTEuAC$6p9}VAYQT@N4a@ze!s8&zTOVf{6>{^U%7k0> znI6#}lkK_rF;V7_){j#gZo?z5U!~Uv2l4*h$<}R%4)uI6ab<`AFvH2Gun92=$c>n zBbM^(y0v`ByCX>;YO_ufL_lc7({;RASH)gpR{Hh_>rGDWc7G6p2QR5Il?3Q1 zOzPm)Tqr)Vc*1^lSwy%Z2oJU?qVM0?4plY+{?MOkkPoJ=&p$H6;yp@0hvUkrf6K! zHzPzUD0*$#AuKn|zr?Q(V&pD_cMujrDQ}Cu*(4AG)w_VHhR&u{k)>5{n}-m;GglV6 z^9<5jdUlHa7ex)Kpu_K7%ntZfBGws0Pw^u@7ZG-sO3A9E@;>$Jw_5bNHp&5+cHlAD zxSjSR&wA^d#GG9io=>d(d(xy})kcQ5sF_BcB2yj0(&sWYBy-zT!xnqBGMx!0yxgeM zS)J{(Rdl<{)n(-mmfE@4ZhId!yXqrMwr-UJ0-8%MYiC58CmVGlJvIS7)Lsqy0YN!D z82tJb%x+xxQu;_M%Pmd2Mpa~Q&OXcQn`l4c(OC{xLiBEQQYEzjyb9Vs#PAd1lR&a? zGQ6u~6FnYO0gTZuonk0ODlefdlizjf-7`3?Kr`t_myW$j6V0LhG;~c{D#{R!0SVyZ z^@61*)~Lk+`R7yHUGjN@EOF|T@NNF>RH_F(vu-6$LA*n?r=HQj!&nvJw8cexGsHLM z+Z=Fy;*n>xVsOV6EagKdqWX+NO)86AdQ#v3*$Par2w}1_$4)%Vb~*1`eIbn?9xfi< zSMl@SS9%s9kOIHUiJ%_qaChr;mGGA%R^|9>Fv@|s4ZBlPlO)NtGR1I3Z3p#!x9mPM znt#2EM`|;{NBpY%;CyvhsoH8R#yb8x$h)|9O+c(c84>VQhG)7*&xV8L?{7L?#EmBm zahirm+4#qoz%JsYArAewA#3aGcy5-jF>e&S+mp%p6EO=!7s=b8)ev?GH5Je^E4YO8aQ1$Xyo%d^Zv5fj*WMi|`PrrWC644T zcLFD+05sgRet-<=I~bgdo#ig+LOguq;dpplzfWG?yb;Ma#w2qN_=`VEw@;4?i`G+G zu8j1YaS1l+z5;VjPZgj6^EEiXB$Ts8G$Tw{HtG+GcQl4*blDZG4KE*FFKPp&KgD>z z#FCn2sWLo)C>=SljLh&_`o4=ESA5jI%R8)S>7<-&&_$_Kg^j_l6bEMBBoI0E7|p2% zd2C;NK_F2KpZN#v5J`VwJ}l>Q5Np|CDyqxdpU_GY@$YRcALd`G(@joeAL}4yKmCBy z8ub8jALp-ROrLJ6aztDM(1b8$k+X&Xrz0?)aEQy>l({gRQ!wWf7#DG?J*^ctB~`$FfMfm1zjn4>b~^bE zy+$(ha&%hBL7|T(mP`!qVNkkw8L;4<7FcZasg-py<1^HzB^4N7`|MPXX?L$ zI72km^ht6J$qNnY&)9!gKijY0tYf)es6{y0Ukd&fdY&;|t*18uL`4~}w#&FTaFzxY+tyioNgl+^;n|MbOlkjc;5x0 zwjq;nKdJ(Nz8gGpFCQwp+izZ)JRSr6Z4k7*d38CPgeh7&POtT59xO9uT7ag$yJT46 zK1TlSA?@U+iD`=Ua_HU~Lv3ZplMkzztSj*St;c~BInz5A_TRY!T*xLE(3Q@iN&am4 zX0xyvoBoII?iRrMU~{klqhuM!}6U1x5eGlh1W zy$-KOxVhATlAnrjo8K$Cnab%Qo+L!07Q)%^#L?}zf);-Vo$9{wX$IWf^tnWd139ao zfZkHZ-O=(gPRiduA!E?GpMyRm0WLr@Zr0_$ya=1SlZp}9>Cjwy zm7IGuzH&=5Gu$z=#LmSCNd}-LSp-}SF#2qNM!deban1@XKJ;h}qo1&IO;sZq|7l>O z_v|*oWbQ%aIOjBYrG7l^GuXVbEpxSyymUm$PtK7xb$e0+za@cj+)KIRfnl8k*Mq)4 z;-k%kS^{Uv0eg>L*{p8#MQW*R%krBw=)n5&j#N)?bt#LC5bCAWUqH-X;9tg5`y(zk z%vKI(@H-m7U%~$dT%Kw2+;`pj*$R=83pBYXNvzxuF|)I=286L+SJ~l4mj{1^L>wXA z6^XpZ_H8Ga*jZvMrbQ~s$Dl;cbRU8|nuGN}k#Epx5oz_DV}8#&xTuJd{Eum>0L%WxacR)6rO7Upge z1~YY3;)k7%FR1M#V`o<%A1MIX0U;9tGj;c?>Mhl}x`RcJy*@X_LmShe5w;mUOi?}w zt|D8R9vXNdm;1(!Q?k6CHfU1iwtL?dDWyERFo-tk>*Vn$OPbQi~^MnNuJRnnP z4=o{_f>^VVLk#VZsf`pxEN&J$@qCrxeA+#RlAn#R;{Z;KGeJyNxjtLoVYh9o9+rwv zhSpa@*>5S)cy&oqD5aX5#-Wl++VFa-9;bgpB7YgUr|DNm)eKBl-u`0$q<{v#TF0s0 z-=`PSA~}-QfB-b>T3S?ix~~}dPYIHqqnr38@*k%LI&i-ddwlJc%6m`Jjm^B>MLLnM zgU!=A|e?SK~YovA%e~$y!5iLJL`UnHf$m&)g9%DC=xZU{D9%IXf zeMM_FQ~~V#QS-PzF~P-!XKOoH%vYnbyq+y@t;8KY=VGR${_EC)Tn%25bwrOYdd+ow zFjnF-vvC8zF!6Q$9}Ou;ibI4z0hBHE9Ob@^Px$-sw24`}u5i&la=Vaxt_#Cp)7J^ud z`wTY;2u?8>DgB!ejCm&&nv&&SCyPvx4;YzYgUoCN+sbMsQcs^_NGT}PZFh&Fi(QI1 zTUig#g`(pJd9}ATJX6qn*w66Z3G6rKL429&;Uh2ZBf~V;tzG5DBEB^_zV&w&K_@F9 z06LgP$W*LY6h!q|m>1Pwsaz9n3FCnzNs){p3kx5@ABDW4ya&;v1`A^?~#L5lorYr z`bk!ec+c79z4}6i0mVhbXf-)gsqf0&fm8M{jFTcz6<8N z2?ep;5I;3=!T5{CNK99Q<@$#{ymi!Yzis=z5qnf}{fu@Ua(1HspvC=w;x8%SIMvU# zO6%b);2jw2>B&q$17#bC7#G=}?C>(5?;p5R!KzrDYaSbK+C^NeEyQ=f=-aLX-if?` zd=08sHL7HD^cl2eN98c~JFeHjnwv$&O$dK@?ekTK_OeuE`P!wIQo`7L-^PP}w(JzG`Tov_%I|{R2F%)tn;6^9-QdSx|YSRN}X#F z&UiTO>c*9#r{|2+;D82EH2gI{owwVZhvHFHma@5u_Y_fQ8+QxoJ&T(DgYis}6{B55 zjXn8I^Mz1@l9;?PW$R$_WEnKnb_0dsM6^*ii2i~w<^oe6)F3G`Dyin0(xt}DYsw~7 zDpP1y=vr|5hATz;rBfk<)#Ss)mNMM#6NLk9U?p{%)QO1D_ce4z;MkeeMw1#bx(_|w z_+r0^c{_J$B&%8p!$c|+*>J~TNF8AU<9nOLPg8C*Y!2o`x#BnRqtse>^;aUC99gkw z|BkTske}a^6cE~Zt36aXmCoPHES^Gq5KwFetDq(q8!TKMi40Ct+bdMad*+Ncv9%^> zi-chK8fb_CCQMi2>WX`d=~q`+_S%eyX~!hjPmQ}Q^5DKr36n@u07Xkgq-yu@1pX&$ zb=tC6mFSMp9wD7}ztu2_yU-GbMR9-nEE;azx3(}dgKd2i7U=Qr0+S4dLfK=qt!bw1 za`9)mr=i@xwaUpC%l#UI5(X3DSvlbK|H?xZORMv20hr76O+AKv1dJC@4h8lg5zW%v zaP$tgsFQ!bgo+HNGGV1^#KQ3h&r*6v^WAJJ;h0II5Q4pUBFv~MJMXxJ(K%TsHFtr8 zy{}-%ATWJiCh!u=lg`x&^?3}Mn9c{elAC4Jc?aCN^)NMF9lQYzk+Jcw1F-5Nh>gDb zf?fdfbJa8kO$WO!I>|TyOgyQ}P~m|-+rJg1bAeOA);d4J3bjOSlC>g5VyNgYk**egz+YcBNE?Dl)V30MNuT2+Sy-|lc8EEZF zBh3)R06T2_;K+l}6+a*D6}s5h6Iu{dRc5bbtaEQSZfVvR-C})fb^7@H{_x$e=LqB2 zpC7RYR=W7L%l$m2TAo+Fh;YTS?ce{+lSK!jo6jaAK9$^M0Kp-|pgXM|OM3cN4K<|J z=<=X3Yof__u=$xoJ&ee&{CQmpjmcRjHyiFFI;Q)QymTAgRt((5oStox5#T5(azA;# zhdk5|K$4BaUL#UHt&~M)_NJk8y*UAs(8k11xuc_-3S7KXv?S($SnC@!dz}$1{3@L( zmp2X)zn{B}Yi*!zi*>?SZ-o$dnZHNBQYMH2 z;L@9F)5|kva;K}&w}I{5mE@mRwWU9rW+9eK6;$MU5ypGFtugXMCH#`-X1Xi@8q~^9o+snUtvzV=9W0vb-W< z{GG_=xOp7(V!?XGConKVD!hI~12u(4Wo6m$imb7@l{RCDb<=H0OJe~ebdASFEvjqh z=Wa{akAwd{#25GwkvhKGQ<`l!cZ~1aFQXY%?Mb5H1QhYcOW8FX z!5pt{0e|#8`>~%;mz%LG;Ny~OVl2I|_2<%N8PcCdZzwOEwy&zUk7a=^=r3LcG#u$Q5 z){D*uJ5Es0(gI5Tt=41AcjR{R&*SYGrNEz9fAs`UI2x!yY!}4_6hg>{hTL52wx`M$ zH5YT<;gAg(!PH0!7CLJh1a?j^#CmP(qv16w$n3DF0t+{Ww6{CEo^%URGTp#53Fq;P zyiA?anp!^YPzpQ}f{s9M0oa)=U%peP>BjVf)oK#SGmaJN)EMeyb|51# za<4!w1d8CPsx{IN))9K&?Y5XtIAbLFF_BJ@MBGi|kbjsT#n&i}AWNKb>y9ljZ?TTD z8#z3#7M-7K>3RzKcPOfiOuhN*&k@S;tNF0!wf!K#MOh`HQ1qAN6uKKV^<@(Y@dyY1 zIp_QE92kdmvXklGw|K0WZ_A|K65Z93S101xgTXjVb{Z~^`IdGtF|ynRRAZjUj~aT% zZ-wVizG#dSPK+gP`8T)hfA!VI8atlR!BOYUufE?slg5zPtYPNgL0ZGRD-=V08J=)3 zd>T`Oz3k9!pDYH6%~Y&93@4wDlk0s$WDzD1`o}{~xsXLe@ypJ*wA$uw>~^+fx~j~U z!f-T2P5hTl)4MYt$E-el0-kG=!&fmDEE?t6S6>T%3=Bl}Jm7BBnfQe*yDFx$Un_8^ z9+L3WW(RC@{9YQ+?OXE-?}7B%LdC)^=8`@emWLDStahKhC3H0iG64UXr}$I11bKwK zP`uk7kxKnq5P`qXB<*E*SQAvINyRbZG{Z{>3!dbgnC)m+>p%CRC8QQ6{^CTFoT$aN z6wSae!bV3}uwh7Q<uPV{jGa!2CQh7rv zJUXw@yW5g3H)nX2Ei(8mYb=seb9OUPhJsMtSFTMau(c}^iz49rOzKb39pjuj?mK$1e0B?lY!@_Y$}F;*-0j z47kdkv9yxWUwuXA6sS>7WB0d*EzfM(L}>HV)}^^G_mir>y${TEx;ENsB30WnN@QT) zVzM5;J_v7cvx6V>u(2joLG-XDOzs(nmR)dsLKtz8B{jlME>+yaE-W?@idW`D)zo!S zSPRA+eNcJjf1I^Wr+dlG9Z^_3rhMX$T6Ub@rR%vkG#SqkxUgi1}jn@n~V- z)Zo!vULOcU#R+hS?JM)~7L@d;b>)!SFmr?Fk_li;OC>EA1TFGYuS)W&3@1=cjj4Kd z+}7#uQqtOAw!?3m6aV$DZ*0>v7Wc4_Z$awsf@wWlR=}`RbF#9vx!V)v_+P~ODFd0F zl7nd{G)0(s`RiUaC>Qasp)F=rww%X@ZbFG~DQ~niGAAhNAtme(T|8VH8zx2!#BT)) z=!j&MF5aZM8nrl~s3vk&?Q-&bd%N%UEXZMh`1WA2r#)uXeax}~B`Kh4Kgp>YWAtJn zX#JT{ONZYNQ6nl(N`g+2U3nuHh^XqfuvJNsn@gP$bxJ(fEO*vZd~+$p8YRw>34`~2 zKOR}HZ8cS*i>Eg%ZK*(ih}j;*sNeU3UgY-+gAx-BnzmZc!vuHuV;z?*1@%xYW#+{E zH{u!%qG=0Ldy!XcIBwc7Dt7ansl4A+po5?IR0TZg!xpI<8Aei@G6OvjS_GPANyJ-D z&T?B$hVl`gbQ?A5`<(q)AlaO)$=KYUi--sw>9~;w7A@C`zl*v=npdDuY}dU@_P}dx z|0j&2s25ZhPy@kYF505kpIPoHO_5~KM5UdmRRcfj+^xm*2ZMbbaF_&MeODZkR?W8m zjmKEEsBIcG2hAwM&|8~++TI=Y#-hYHxx$cxIS#Bj^}jDlkI{*l)Ue!rIbwx_=Ra*} zeLSX0?59_fvz5p7a)AS`Z1Q#Sr7G+!kOt(*>1f4wDg83jKo!f8!EKTr^#NPzs;k=8 z>W`X^&L}e}A+%x*C3GD;rJrPBL5;{z)?K+?t4~~yYc>@hQ8WSvOgoM@ue3qpru@Qz zxoEU*($bsv%f?yl8Y(L7Q18<|Ze#a-q(6cm&SzlAzyo~@`rG5%^ApO-g&PqN5t{pb zun7i6mDeoF!d{348viX|C3uRF6^+GU)mTJq1Qq%ETy1^u)%(?!zy%xzzr=tq$$dV` zAAhRzG<6A~r(6>BdK5Dow>@WyRE5kZb@NsU3zszVl;p6P-tsAC#%I(WW1&;AX5IS| zgJ4cUJZ3UAH_VzigH&R)AkWic>ZUGtM&G6n;kw6XOL6t}^}pzhJB4ayM{%OBkoj*C zxUrKmMO4e{6(Trs(a`o?t}3?VY5iq4TPR;=`?((UslNd-Ls~3Ma^22 zSVB2Wjn|zTl0Ac|Tp<~c>`N(&EI;_`GrB+ZTJeaD?8Cs^KkiB8{+grn>RU0R?faa; zUA~rnj-|&c35k-MtpZ~8Dbk^k=W0K3Fyz}F%v=D)5vi{FSY#ufx}(w3FQ`v>gm=Fhv6=3>)-DGk z4(Od?p9~&`p#~cUy);aw%k@cak@T>DCiuwSDPzEdiFmLVu6UlzaC$7!C&|M!mg_nI zVa_d;nS?Tv;Ps_hh)O0>Xx2K#12#PL1RiE9X7W&t)Dxn?PfiI%r5jn~`Xu|WV zd0k>YF=Y5%U}zPJ*CGW;gBv> zl~s8WtC@&@e$hvdl^kIB(P&b_kQBx%BAe6jBSpMrT!GiE}Ug}J#L_n;BIxhcwb9}`qP zG|P-w6asnAI*kT%MNMtcN2xtSC}VHWA4m3Ox!Xnc+jh};&4NDOS5#5H5c5(mo0(8G zZ`Xjj5ky!2xfAYun8iU*R4;seyVQW&w;XpccFYh_1~~*3YN?HCUWZaAuUC2<@~xau zJ|)Rki>MCu2+}JyPI#5{)brD39-}Eeh~M6x@^zt@486k1GC(#$U|^9FOFLvSp8{_a z4JVlV_x(G5HaX_)nu!CacmenO_tKZ{dDvaHugNj#BItP!F)`mV5*2%9#7*VN!h+xw zJbH%Ifxgp%sxkRw&1!fr2}*$Uqu6SfW?a&188RtNR2*JN8~|^zpTlj^Dhtr4>^QE1 zODqz3^q}Tm!0D+GaqZsLF_DKHtypi);7Do}tnPRd?N`zlJoUnxc`mjs%SloSgA7&M zm?>|vPy{4qJf;U+=Z9Zn{I*P(xXW!BQ%K1%`zSEj5esY08X+!K^69cx5q!FHXck32 zY^zupKQ))Ql+TzHbTD5lZPd}oc8&W!zV|RWi&1YJ`aFb+WYwictQHd=VmJnP8ZhP8 z{(JdN2ncOGELWlem1OK(8*~CX^~9Ru@USpC9i`65uVB?_`6%$qVDEMZ?co$NSMSO_ z0r(~bQ}`m`vA=ub$bL6!k@n~bg;xsR3!*74SOp!c!r3o$P-PLHXr&9qL0GI`4~nvy zw}fA|i{D)B1z@4_LO9EHk(L*_wLQZIcr`VC6BD(?@;zsG^2HEJF4aR%s$%BJJ{HjK z5p@7Swn=M<=25{VRx-<}s{91zf|$4IvyCGq6q&4p>oJVy+Iv&w&}d(lwMK@;K){c2 zd+pQ`2L=jSu=5bLv<*63D4!93sW|L0I)&?hMz3EgaP%h)BK|i=w8= zJcws#h=kMb+fdPdTi6v3^3T+)C6=qgA2)TE+1(PIHhs05%Zp|w4C z#`r`;o7b&g`1qnssbnyZ;NNTwJkw@VlNRv=HZj5~hUGm`-%Vfk?T~xJTTZteX#;igQNZ*4w(LLaleYmCxLF!>6;469$U|=h#U9rEHdLjm%|Z>qm)U-+3cUPweApUW2g(#hi+DG?mr0pMwEK{O_WJQ9(QkR?(4t zK-cl<{k4s@srFgv98eJSANwi7Nt9MDi{Z_p`mDd_k15ATDF$4nEYaNn5E&`a5@dAV zSq$d3kY;5|BuMaW5xkRMcnn_~Uwyn^X{7FK$I@iV`|W}Pw~>AYk7i}2_uGb&YB7|G z6O1c=97OX{zpMOnje~Z~y6&ZH_wxAD$S@cl|9&2@9FV91BOVoTlj~_>2CRqKiRA+5 zcCQI<*~>V&Y9o%6gR-q$WlU4?02VwrHO(|=Jp8uX#HESw^%aHB_lED!y8GS&ajH}N z696Y7((xYr<$KJTh#l~CPcx-{A5xbN>37Lg@-DNRf7mf9@OM-zb~Wh577}b=jw5Ev z8$CbvJW8$lH#**VA0Kq{u;{${c+S=rR5SH5tK^lFz#J(&_a!|YH^?PK z`?hJyKvkg>hdNA1mk~AWphM&MogN2Mn6fkMvaM+RWoq2g51Tk!q_B|DSCFLOo9C@* zk}2USOQDk0*5t6OFp3-QmgO_U^Qt5uSXzUsMSd6-p7uRmKLO~6Vlf?ZvPRYzEArM3 zi#O}ANj`X_zczskNccdmnu*pvtu!WWmfO3cG60}gZ@;alH=-=m5W7Iw_NYB4=(aAr zD^ApH)n@C**=(G1@Ev}z`MZ?Cv+y)SuJ_HaBZTY=gqq?lj!JMtboY&SUVF?R#+ zedfy-iph)QF`#@HY<4`v_@~yBsc|q|m?&?ar#;>5tqb4_;BwCpraKS@Va6rX2ALzQ zdX0PyhT7gjn_NB0%^0}#0Oa~VUrVEKt&Ewb(Xn0&B)MxKxvC#li~;}-1aLf6pZwQ6 zUH{~NFU?3S5?VF--CHy8kykhm3Lq;!mc0l6xk7`5G1Y5>dr3I47jFL)=LGqce(d74 zVR3DkcsM^kJ@@ZSsGrhvz&u=O&tJgColan)`zDr!N*(lbPTyAvu-J?YZ#xJxxu~om z7owymacbBSo>JHUVSR}MDy0-3Qr|NIPs_+n)F12$FHqp|+I3Cvlt`g=L_^{BGlW0P2g~}dR(=AE9!yw#x%Y!{Dx$PL)>B&7zj-7R z$S}j1yIkLn@0vYo%?nJWQffn#ir7O!GX2~`lbwR{3sE_4gamM@{BY?=_)ycz5TV@j z57i4IHb=5EQcxzqodr`O05^=zJ@>(mEsHlI@~$6fEq48>s*M3|6tKAG`+2CiUc~_> zZ2jjpH(YPu^5SiAu9v(hmi;aN?k+_|uk^+Kbyh`Pq~UKVphys7VH03CCrzk``$qre zeE0IaH3lLlj+jNLlgc(2U25GqXzW)8uEZvREKIyzoAdN!g%ZZ$k6+2JNyO@AB?@mm zPb91%B?W{p)q#$)D~VE<@)^A^f97=kW`S+50p{y&$qlU5S4qTjB&8?3i+0#?L@5ur3)jd&NMMMjfo*SIWxu?#p;6uubtAFr^`oKVujC23RrC`)^j6G@fxNj;t9j;O5;o@H8<1$eqJB3xt zl>vV?WFdMwI)lLR#`e=5P(9j&$3D24v%hw>((u(5;#AfxNn@LaEl`%#v=gC zpntmWYdpfNNef!vt&h6KrqOUAl1>*@-!Pqy==ZwPEm63_+va6dsqf1ViR5x#c_?D0! ziPF--8ZhYZztL!c{)=4FKD>0SJ7LGm`TL?6lc#|7b(qdsq7{&{I{_;9IeUoX<;qIX zD1S4)%a+*g3Q+Q7<}S^qi?4VHIOq<#GgsmULb3&S)q_O%nww!FW??0*m?=K4b?K3a03h$b-lOn>{-11>?VE$XjtS4o&G-k6W1M;Vcm^AUUhDHfH zQzCJb3p60iar+~65@GGzTYF!MWPLsCxN<(@f7#+{!6muSUH_-|wOk@Q zHpV(O5kP7bo^?7=Xo(TVJU3qh(RtwTh$QRZy^&t|^8#q2gZyjZp9D7RxOiO+(v~;s zii#RKArt|=!~JU;4JE}EZV{%C#1nl2i&Tqo!aMt^fv<`(Uwp(Jt^;yuvrrZgH}4jh zs3spvoZz|~MB$_YK~&RdG2{1Op#JDmsndL;D(y9tHdgei=EqZ!ef@>2%BK(&}!KbS~wY zzp=4R4$bmEm`_xe1GW*tC5)$vCqGLz_v$>LXbkFQ9EOyXgq<#Fra@HgRl&uAw|(}D z7>KmjU*!Gb0PT4ZWn&5kVXme>}V3aTL(Oi>zlww9#%#NtF+XMt)EJuMf-Bf6p3#( zDG0y5eiLnu_`mAlu+?u8cn5M9LM8Zb_S|~bu5{BnKfIRSrSXATMW_FG9#8^wC@Dxg z+txC~!@FX#l{Jl8@Bj=v`^vmB6Rn|v@p*wbL}ttind%oEcwC<5HRkIF1*a>3gy+j} zCx3GXiYn@%?(+qX_As`y&hH7zbO~k~ot#D)UXHv>8!C8p#Y9Oo@vf*IW(Rs|p~O}y zFQv#Au0m>QQ+H73#=eXbT!Fn!TTZu00L$GzOoKbEd#6SIEmnMpiToV`V>CJ!r+4x>t zSD{lzLgQ;Ro~HJYVv`g+(&9ee1hxbP&i!A4N}ZRx(d&*&N3=kFk_@>qr>7&I*4C^D=a)LblY%7slBGLQTM0v4BOkJ zeN4DGrhhNW3i&4i&knIG`410qtw;bz(uG9@cKp{(@7wE}>sX+bt!(7IF0#JE^|Qnc zFuCBn-9Y9rd@}weh^S_k|B$81f0=1+=B4Lw?Z<^%7I8@D&;t9YQRxe(4l^(%$BzF* zPEfX>?%Jq_O%G0^Q9bJx1p&r+vUFYNDoW}b52Rsz9`uFbE>QG6Bmc4y_cA{GL{7~; z+$5?JTMmcF@t3p7|0uc+N4C2tY9tW^K@g+FrZr;JE@E$rs-kv{QhQa+#H_t)S6Z`1 zQKL4om729nty)!^)~YYxfAD_4d*6Nco%7B;uQxWF?q+E^Ru<8XMpc2cP&r?;+E#w- zLATU;n|+aFR4j3Lcd}*Cyjsk7TtpFAJDLogV?V_+zwjc> zG>>*+^_m= zznvs_iM=>!$Ng~R--mTW0+I|_lDrzm?|scA$Ok)7Na|##HF9&sp#WS`GK|H~E76-g z?`29EV7=Lvg}ZR^E<30CwjtxH*-yU<9|;TL*$CPN(tj6!j1Dm{z}Gyib-q^YJMe(# zYsYRIO>!$S5il8heD*6~`+06e1E2bh~@JJKR_%2ZKV=hHjw>Asl= zaB$6L!}|kt3?bbmv`1jw2)xlf1k-FD=RT*^zXFiHk6UL_5dV;~@%$GUvsk4S zc?P9w70_gc!|sWocAbs+JDA8gpUUxTj3so%8EIS->5SrJ1TPWAf8tY`W1nqGmB#DB zDUn0SlviOW)6!=ZcEBZHPj3t)*Ir0o3_ZpW9!{-6#xxeyqTl`uMr+Niv|!fG5h%|qJQ8QjAkD;dd>kjXS}aWWiP3v2sDUU2@KRr2aI7n=U@4VIJD zrB}3HXB_)pD%-;qPet!9u@hJ3>|#Uw)gb;`zey=+3{b?K*|G|Bl9{0q(jMBtt56nuu$tEs4r5u;t?v5sjZs7V?Nh6sh5XeBcc1n-9?P z-n91huXuJXxSPOO5Zg7|#tU4++jq^u(tt%N%x$*EG59F_T(}38fEsA*7E^8enh~JV zUVN>6l_r_p+E0)_STmrxnV7=XHk-$!43F>h=i$#PG~rX}cqx@RihxWy7#MJ~0FC@r z9^HR)RHH}!pqZpE=nqINCiKvN^f>a3X|BY=&#J25+28>vd6mA19Pp1@46>h0n*ugXo3%n!=+0S3T%KtpNTAzn7M7(^p zzp!B|{^dZGi{l<2l?>+Tn?4(JduylOAHjqy94X>DPvFK0+S<`uvnCU~PbE7ek44^C zRY^MBoz^Pk?)3avg#D~lTSlSH4n*AVsKb8~$A#4B{fe^JCvzzLtU&HQQVlcNQch=#e=18$MRHho@$k`2 zD)8$+hI>?bLO8L$r6BA)43p#!{`UDlkW!54z^n)Nwd=zm`WYcHUkeAkuDRIAh5!{7poCj?9+ z5ZOQjOOW84G5gny?c}Pt9_G5myVbLf~u6(M&$3z(yR50x-{&91X$nk+ZfI?HAl%|Jn1HR0nA5>nBJvQ!qOeWDnVn3HgLkO>Mvn1V()eQLbf zvFDy!mM<$QSAW0@zC7Jg5YsPk`*+P7foEB*86pevS${Hxn>M#Sl1I6XABJ!5^Vg*4 zFc?xV&3()vjRs>QFDVlstq-Ajh^K6zhj4%_-0JDQQO60fWF&~Ca{quC?z;Eb_Wcfk z;-v;zpcf_?|C!%c9;He`x@82-Y911H%IGKRwENyH=gYm#6PtAo@63I^{KPf!K1Qc) z-a;Y}$eWe>b@M&0r&i=@d~k^mr)V^vJ^g1=8#lcjWErk0bJ|@Y1&fkLU5Dk^i)Xbe zGu7z191`YpjFOyd_0?D>7s>!p1ut|9-kATa%IUZbBj$|}jzAeRy}Y~_^Ra}ML{l8q z{p=A8iTcy$r$=?}50jJQwS7nOqd)jTuI}zhfvPGgIL7i{Zjp6_9vRUs$Oh@)g{)hf zH9mRm8%mI-CeZfij2UP7l-5Lz|(j%|p_+3%SwB~a2+qbjz z)|Xj%xkSPNr9P4`51O3quj#38mY=hVkej7lKk5E%g6Vya)uNS^4wN*Hl=J`XNwk5JZs}znF)xELGK`tbS&aaPU6z zN>Xz3d_!zi(2xr)IbH9y5p%y zg|X(iHc&b=h`-eyNlqT98*36gEgF+Zuo6&-c&Kn}43)-LAfGmQddKXrf_tR+|{` zpc$n>Hu-=2{{OmJ=ZR~K$6T=;^gH(5uRr@tH==)P`oyYbhh9zm8Gi#0u6()Fy)uUm zy^s;e?my{yxzu5VeAV{G#+?zKcNNbsr!T6E+=tOzha7J703gRvvyv%n ze_)FFvmJ*i%7+|Ha<6P~$4SYr4jragr#&7SLJtsxaBMu8Beqd5dyZQQzFGA8Vp?4D zV^YPt{nUju6}>D1Hv&lFw_nCXxN}y~$_XYPAt##|TcFCIG=Fr4f7odT=(Y4{hCN|@ z<;~H#$CkToQzPvgjMgH1qXFWmdaql10-~JF*6#s~OI(-=6Gg42SQ;8Ui)A8zqij*x z?K5QH27RM%9tRr-LW}y~@I1|+mNDtynI>DJPadsCDEO4>idq9zi#<&>x1-Iks?vnm zJmVl5Cz#4gR7C2G9xj&_ zN&D5aUHWYEDB(y5#LxogqK;A8u3gV%Y0!h(cqH6NeMRp0dcE)cgS~UC+0|Lcy_Q^l z2_#?(P>gOe4d0=mavLvV6G}EPf!-i+#E<{wManC6AMNa{rMe-LN-MF5@CfVn7OUW{ zTc6|kf9&p}Jc0^pkfm?n!#*;e9`6!Yl1P_98U7ZZ@lzM zbU+Y5;Z7;Z1n*)|9E;H(OOWy*e*!#->s7k3c~Hw zOH1B%JB)>O1j zz^K(Pxi$T}Lzk#$pZbSm!cD3XF;tGWZ69L^iNbH#HD;qTlu*lA!w&9!oauD&Wls79I1@J1n24<=u{p#t z4Qv*k%a9z^c=in6?=1I%UZisRA39Y{9c$sl+{PO%G8%rR6{l5ku5fU>w4SEkm68}T z4T(7MY(Dp|&92J!Ds8u27zGF2NugBY%+m>Aunc)^A_Y?H}dBMC=k@%de0Z;W;2Iqxl*^CZ;4i4zn*f<7| zns-Cr=5h9+fq>zmFVyr8@_Q)EKA?OSD-mV29es^YcwdBcbDWtAQw*P7s3f@5|H^1I zaCxzH{%BraW>(feR{z=iz_2iDjXh?nI3Gig9lv*F?yyhZpBY|YyhZ5j!;!0Diu!P! z;_1VnS}aG#jYHaq%QEj)o835;twrPMcZ%|tMbseSv~G>Jv(C-3N-fX&MI^!C`ccy) z7JZ%gAI=>^EX210;PV;hS|11Kc>7I*w8IiKx=r10;sJo{+9&vxcfDu16?GuIfkgMK?=~Z|M>mx6>dZL(A5Tu;3UNG23^8f-;9ch&!q>ID&!Ez>CMkN z+XOyrZlmLv_#Cou&KSRap}0Xd2%(I^c4hikOom)}yvn}~G)EF>=#6T=l79Q~4+l}pK+islfXVqL`S8SGzvYYx zYyT0lBcIq-ooJ2WF=TYB?q0T3V7jN_;rFAO*=*a9&Je`uHpoiwXNnrU&6tc6-}jt| zqLe6;vE<(ort)~Tgb?UtBw|R>72ovG6AHZzT_16L(>1q=Ifsz&B$rW}r+FLS>BUj@ z+g}GzOK!`Hf0{DObTLn=h)y!iT@F58bPq%2V9>rJU>ad?O5p~5C?fcCjZw988zVVJ zJa)G9<(2?jZ;vvYa*%A=f&pHk{V6LK1ZGlbFS33gr)VB2HK)Mzb}tU+A(H#DiRsbw z95eoe9FZ0#!mNOn?Cji|QNb*)aM!P%Tb}qb&4|QfZic?rB zBuN#<)%LztPg}ehP`x@$?BQY0a&@Wsin*_6oDVEnImPjTtcjTGwaDMmUqIfe=IQ9- zG`)r!tfhNqg|XqdH6ju<`;NMKHB(jnfoCPf1=d3jn~J65J92{pNuRYjM0WGm~*55fDZ(W-6gG@B615Z zXK)vy1w_Cv%5q^5?~w=tju~fE5XGr1Cu@mzltcuJdNV2vkxl!JDakClDqpQsYdSGB z2#xsrYM>Y4XaNHdTFMnH>SYYyUk-5HepV3vz`PLAnJ&mv$dB?%1~B1A2+A{?q$dQ} zu)ksd(&LzhE?>0W>5%Z4G&Z0r*Lyu$O~*#B5{8ZD$&Sm=0I(Wjg0HdB-&fSZ=&X!Xr!tn{gKfWhBZTq;ABOspZ*= znjMlp@D%Co)nl)XV^(2tWl}IQV2koK+vu+xI#!dZyTr)^HgW@%sVMIW2t4d^=b`-I zYqrhPhENpYAm)m0z&LR?bk#*L`xLMVJ-$aWea@r(1jPye_j@SGiuEQ2sc}b1N1%CK z`6qrL@s0IxuXWL5HV`oVD(>@|mt48FirS%^Caylzd8i9p{@sKpRt*=UMoE=McJ7ac zhlQc89nt>Emv{BZI%XnQez76~*d=3*94+@RP|`F^@{)h4B`|DEFW|fQQ$h{@HC|r( z*I)n*5fDd_3g?={^os=&rp36`>kZRGy~!(b3w~EEy&fG|5WEwYh92jmSnt7K)@ts+ z?tkKY5YMKPa373GXO7SnJxoM4-6}4oK4}fY*Vg=}w>Ja&dLb5}UiQy`g0N$ncP2$k zAFE3nbs!+FA+u5-nZs0ba~=x?iTz!EsdPF3wB(bPsrJ3o5e@fJgir!@7NCn_3hz>E zWiAqUN05)!=&7E%6u#Tnrg%Kg!%ssN+18BmN$UI(ge-?yv9`xcY3Pr>OItPmNP;5D zz>IzP)r{MRk^TfQ25g;A5ZtL6cXwxNPe2BoO8*9ZEu4L&iPLvkv^rpMYb+<{y~MxF$96LfrcVB-M;S3!|uzo;8u~WtR^H>l)2a5Yb!oTy871w9v|*j zW~zZzph3ZdMc4~3YRN(KYwvaJ`#~_q(hHM?aVd<-9_H#rW#W_U1qMHWIt&}f+`ET= z`-d%U3ClMaC{8zx8FO} zkkrVG4*mPK&hPh_lzyU|w2W==!M~7Gp+D^fvro&(_f}@!W-OP zAqa8B7RMpdZ|1b0zZYbU+It_(slK`PNmTzuYWOrsm*OPp`?%-$D|Ee)N1)*&BNX`u z57lKwJ?N4<0&GiBr#IYoGo&hvC|W|C8cZS5=@^}zBnSBpvOnM^U_-@eI8;`ith=I) zUUHLaubvy!%>&afBlzZB@4sX1ioe4$Ctr7Oh#s<%y0ZD10#IF62P4v^r9cX_n}fl_ z?`sbJlxrE^RzMSd!z?d=p*Lr}@}pD~W-7%&1LS(;#wp?pK@XPMYCLM ztIxvoSemy?IHa-^WKYn(C$hMC(KFjX1CI(=j=5rwH$lt7DExN5~~Dk&5~CiBeJI+@uO`xK|ccqt3dY<>zp~r78t3wqEH0PF;?<7bT-hH?RcDUQiyuhRHyd}uoZgBn8{wR^3HJ4S^PXH zLa(*9wMx^z$47A@KyzV`FVa}5T}ZoeA;ysx{D~LXKsXR@z?1wDqHH)G3c@@eqrQuj zj?PE42td!PsS3x)hE?Uscy1VcFb4c;nSCf#QbJJlFooWhr`$;U`2xlI3p@p2k1kq~ z-oY>G`R8~+Newj|lz!dUEF$2>CjB8}37-1y5TQI+aKa}+|0hLK8L z)EnI^+_2GXKjco5!zG0pZssSMqSgKd)5qngK(Qki3&Cy9jJN%30^*P@cU%xzle(0>5pSQ-2o zRAUq6g{jetOAmdPXmjEM`TX#^hE2p1|JHseDe4y^9_uNr6QhtHrbfs4(Si$Hx4xy^ z{w9@^;FzPJ84$dAW^j0qK^W}qQ}!y5_BkgP09b2s+hXbVdxW)KkBX)oR^v}bHgEeT zGh$KDMp!WAmA%q?u7F&oAudfa+dc$;Om#TG#}_>nb**7+PomhxVXbyC9cgVGMV#6lTOME+YT38t`i2!f-iT6e#2?X zXgMi7Fai1W#m$-yKUZH9zFU-L&hG`grH1pM;$i~4C|8~_1PxTo5g7UQc(9iD|ONbxq2qN}Cbt*0JP0lc(H0<~dbGp@UiIE^Fne6@7JB)$t@jWUcPdVOs zp|^ea^in-(G6h3MK30mvkI)2vMZZ>8i_a~K*XW30!w2YuI6iy{GbH_mlI90BW$JX^ z=m$=uQ;T9v$dAxxGqH>_Pdk3Z2EgO7>_RwCl7{?)g`|t)kkY%_VT#Gf%uyAf4ZrO@ zs$o`d^j-9i-+0lMArp(VB=#Zn60pOHG6KI62gMd4KyUjVbiKRCx4Ymht1D9rO3Ns{ zP<`7O#vE~xvLDGc?7*l6V;4A|k!+IaUZI0QV10w}l$VL$qfz-0BTlxv z0g8ucr1Tbn7+(Bm$1%+h2GYe~Vn5h%+a^V4hq%?aXF{&k;zBC%WS=AGW5VIjFOCgg zOkVnz_Jz(GaK}1e1zy))=y>7*oRs(rnT@~5mSpt3sqNoyXhC*&+wt-uaZx1~rl$lb z4!)VeBE-L1H!;!vAJX@=>r!g=x4bTOm&SId$OR^WONbVaS`}lD`>f#xjn~*x{?uIj z#rN?Ocmz_32vw{61JR_22Xiaa-@cS`rgF5SE(j-D)Z}dEVI+ml_%~zWg|fiazUFDO zaVOBETe5sY{vn#h(+J9yh7RiTKqvfZwrDV0+^xSWXAgYgP$OjpS=7rjQc23S-)PP- zg}k62F*Jb=^nin*RK$SjxTw-v=zV9&7~ZY;D+;XDpKjq~Ci~d6_A{EHqvxqc#tH?t z(}>ISZnv6Dx^!3t|4`89f9mTtC4V2h@Ugg>PFH@H^^w*HCE}VI?rS!hV?NE8Yp*Lx zZ1YW6BTts(SG`6i2~qjc=@-T~qA3FNGBHdp7XOG-zb_$blD(qvBv)slx+p(vrRlv!lI^YUu+^`N*q zKjP_H+ECLsj1j`kV)S?T$}+EAg$81|O)O_JpINU&en*_6KarviF@!!t?`*sHGDr=MBxjy zb;)nrt5#GA)xS}E!3ltCyFL14fnJoE@UO7VU;r`?2L!+(!HUq`9?OB~ve1yCX-&Q+7N|Q9zC5*2M|E3GRrm}t_ zR9rG|5o@QNT0z@;oW%@--J=1aLZDt4PRPIN$R)(I5HSJ(iHe)8R+h^vJr3#P=xMbz zm<)QFQc;XY1_Bf&DbZzk(pG|3EXJK9s)R(VB~^-p&rbrw(m@z@t}7}}*jquen4tE; zyR_YWU8fw_Yl#--k_-Gs9SDWM8G3t`Q_)yg9&-pD!yr&fUII?)c`)%wX}V!?Zb&|S z`=lf5fid8~N9ed=^Xn&W-8g;yPy7;QG*6`*o$9=g|Kiru3TNlpmsYX^q!dAYDHJ@KH0jaXfMJPo$^GHra?cicUqc5&f5hXUnxpP{Ze)DJ>XGB=ljF z(Le?Csl~&

~^}#w?woH-kDA({|~*W$jYn(rZRNRMMqWdeY=w&o3QMXk{G~AYb?= z8nH`nOc*A`%7fClKVXU{5?UE-1t1BCJ;FSfRPeh#wa;92drdCo|MJN;UEj8Z9X0fk6tH>M5;4hUI2^8ggH1IMPj%!*8fd zMsR_0VF~+w&fJzD{ZPwrx28IF$*MW9ctE{Sf6UNR`|ApW)fWAjQ9fvv}p& zUU_XtGNfsfWE9Vqc+{jlL)gT7Z^QAG0#X#)sSZAbWnNukKMw&E2#tY0dvOR4EL3?x zCl$jnMgs>Z%#D#SNp=KyeU{~AhjjLif zXjNwEb^Y}S1@joouz;lPfjCkk01otC($*_6E5EQL_C>L6@XIT z>&mw6V`19S?|z6+j4rkiFLPmHc$@D%1wY;asX=#Z0}ELb##R6w3Yv>LC4L}=??_@i zUi3QB^8)j8iC4q_7MaPXd1VuzP`0RXv^4z7(KFt-- zlN7pjFLoeFpD5Ke?L-eX#LZt;O0FeN2<0l8Fo70GPV(}DIc(Q7t*sA4-`aR3dW0OV z)kVep2(t=^o>quYUH6?`!=uZ8^1s>OOOtDzs#$o~AVs1*Ayfqdn|gua0`;r{K`OQ$ zKiBC>ix3WoCX_M_7w`i$^|cOxE-mR82{b~O&+o2Qft?N#D4hbNc1yNphiOQ8VBqK( z!!&^ZxWqk#5KcJAd5>)(6CGH~C`_tzEOy0?wRwv~ZnUiOrYjjh;Mu1Y3}7n%&Zd+3st{>7E< zGMKq*`)j4bFf^2j+W7G9yN; z+};WqJMbOcbAIBQY>VW1Tyiv2VKtVDU9p#&gNk|JjWS3${Gfa!cyDGuDA|i%Oz{R? z{9)#iJ&-j?e2V(oMwstAVu6ZT&7r{~#9jKMH$>2y9&7ayXLty^_$WCnb|wW ztIb$GzRT$R`uw+{E{!4wtvJ-xYJ>(g!=pvpAyUo&g%K-xu%-c2*96EpSa2QnQO%4( zxI-*meL`f5G^6o;26KHL=`iga>Nz-#Q&P%sj+Thbd45Gxq^wmCl}+fB zf64`R#HM5-%onrC8*m&8Mqm0BGaCE<*={WCUwNEU;(=-WD&l1B1>tFB>I118-q9ZD zG=7H3q=rzYu3q-q;T*E8{&D`oj|Dlicizq`EJ>>VX1)yLq=a&nPeV!`W;^(7fi70D1|AmTca-z-lW-#MmPE4eJ(am=*A|7fwHg>e zks8xDmc0QiRd>->-k=j<0P0-|GYfw@zX=7i3KJzJCwEWDKn@-nbMS(}VQ-31v}Plz zQa4&_ICpDBe~$9fYk?&q(hduC9U!Vsn({Pr;&Z z79?^998T7bvd;m^s>1epCT`F7rx~VpwQyhOwLXS8;I*gK8=oHLd#hgX_YyhPFtcXz z#=L4$(HoD%V%25Djp&xGfz*53;)uU*4aYq>ME+)c^uTD!n`VT*B$t0Q?8x4Y{S3$d z@$PKf6+|*LgMu;%x5p(J;!)ew^w7Y-jl|~JPt7%AhQ~(cgj?U(rPexurwL&i46%tC zWoe_$cpu8(OY3LPs(%Z(3)Ih~l`txf+sXr~ieAp`$T_eD=0oXwEDBM$1>>r7!$cD@ zB9J!S=av8og@X-F4BF$Ih0sR-%gA5=kwh=SXoTiiUYv4+xP>QQCZ%BSJ(k<#htL_@8_KPzRRuaE6nSa}m{OM|l- zny`_H52vllzunF7d^Qy`l~s^i$51MH^5w=u^4?@!xat~^8aSo`1Rf2%kkQjdA}xgf zCX=DdKO~DNp_uV^f07Ad1U&vVMc~*&R}Zd3bXh@`!iL-7Cw8P$lR%;XLIs$Q;0qv< z-OgE)ed!6&tWdO}NH#o|oM801S0++cNL?`q$x-Rw|F<0SYj{S|#j_uX*Z{DMF?p`n zyfCf!T^Sp9tMeqJ$s%+|wPIgmA(~+-vfj>J@A2J?Vt&aM@BIi8VblQ z)fhLJQSH9)->Gpk(AMo${os>~pzlcbA8l5Hs1#y6WF=yWpEo^91QGleh$=K)9hWP7 zVD3Q-ie>9{96b}#7x?&jG-K?}i{?a9Rs$UdotBI*YfY;*HRH}=wXJ6bv?Hfn6)D;7 z#&>CWw>O?Q^AEfY4skmXl)THg{rM|3fDCJMMubLKbCZ!JqKXlpLz3@oGI(L`GJxG> z?lJiPnbRv^zW!8o!So9OVRh-HFof_FXWMQ*4V9J%Smfrs5%%FPXM;3MQm`>cj7rlx za;S2+MfE$|zzl0)(Bwd}59{RT<6efKH56`~B_x~q+ba23R+N`B)b8@%adTnA&wwO! zIBk7pK=4OPzFdc`zqJO*V`L%C1`btstjC4gxyZ>%jQngTUPy1=)I+U;I=|1XIKH`#`ZiK#i?N`Qor}cQM1&4e zEWiAXUol$*Vvw!g%s~V4DV;B6RbL}Dh9lcmhZ`WN5- zD1FgKfZ4Un)G6xv+Gj*UQuRKTeeki#?bEElKtY?u zcquz6nc6%Kro3bG7tQS#WQNouKM`)Dn_>+8!bJaL~W6XEpxmJ!&+mTUhf*BphxIq&bSk^ zYG*FW`Bm17zjs&I`&k6KtK#87e|?;LRzKZ&H7qjFy%}8TKH06N;+pIhi775S-FIuP_$k|tTXKtce5oR~cUOZ`*2j+~#iJr5M@;UTvR|%N z!7;iF&FR^;*6-Y6$g&l8+#6qB)eK2zdFiAxlfKtKIz6qIc8SW8pl(E)>5iNe&iwVcjW!Bx#|d5&>6_GUHD>Qxp-T6qI+EBd}P-0*^@Bj{2>~d#34O<_@oG zlH6jbDSPm8Pu}e9);ey-JYs^S`;OuW_x^FyuT>3Q2Ct~j zfnAJmoTWQl)icfh2x}%rG@-h2_Jfp{R-vO5%f3_iU+S*Xq7jDaX+=$)Ws^`n6kMVp z+q8Sm?v}!MWpAakr2IvN?WZu>l(^qSTbK<^glXA;jzR%n^UoL5ewl7Tagei4>(o?rodB-&1rn@4~aDfhOA{|^a6Y!`D56+l~Bn?)=(t8oGC(66w!mU zlzskjhXvDt;B&$o;2`bQKgBUt&~rUS&1cv>!=h+XM#uVk}5Mz z&Z&pw8XzYD*dgivdP+rB{j^N zjdb`)3Z_9l;J*4TUK#`8NR=GxT-?v3Rn-$?1dv_JDP zKt7EB2;;KBcOi`L^pJ!o6htwUkWU2)=_7a)t?yE!HZMGU8{Ke6`6by?5@eYV=Jj*j zevU5%d#Fl3NL^L*)_+yt$SRIvfj@=nd}m+{X_5>8PSdQ{m&tb7{h>be*%Q0J6Ju9* zU?FoK7|CugAg&&+3>`MTv|cimHGQ%;x3wpB^&NY()5jLN0XL2x#D_Fr2qanFIy~K; zo)MjNuGnO1V1rbBk473KZ$|S2QAi`?T|O|QtyN5Hy>2f9s^F49>F68e2a#;zhkwqx za?~38pr0)EIdAxei&l#+>w>itM~JyTEXOLdD0)8s zObE32bLN+$>*bLOzgV5r12DR;;|(>8VZ${ogKQFu_4$)G)PFgkUFeW9E+@zYD_Zxw zpDH?Yf$@WrcoJyqqI7>vkCc7Ksv7kv5n4{J%=SW2xXMWC68_(ay=K<|E7f^aKI!=f4oolr06{ZynT%V$yg57b{&l6k_1Zj* zN9+neZzdnnSp+Y-T3y?>3@L2o7doJS_DyG&xvp+X6ujwtknji_t(7xxCVM@xxIc7Gx15f*c7J9Z5dT zKdXMzDZ2c0B9qrc?65bfn~XI|giknieqm|pbBmjYjc?S@aZj<&gE0{}9ZUe^i&lMR zP*bzfQgdfhl0WqwTqlc9j3!I5Bf`y=2sO#FR}CX3DNax_V?diXR;dHM8tjUhjqS#1 z7?k10y`WOLVtl5SD)&rNjBXNOka}@P=Hp}Luj%5anE38A5T#YYY&aP;DY_r{m4vsZ z6bey1d%X%dx0V!md)fL+tZKTd+Gi?k2}vc>AnXOQygsTOSb$?_8}o}$I88r~`qqxw zjbF$6MZM%LKW1E{U!!C!a|)B|M-xbxzpHqDY#i^g)*wK|aA@I&omkZPU%iE%_i(8S z6lrQZbWx;k#PTZa3kKDnncj zAnzA+G~l;25CU0PL)g;4CTq-ze#_|kyGjqa862_yj+envJKN{JLIJzjdGUSGa%!@% z*-WOh@`|#|QRvm+fsQ2xi#SGKn|z(i9M$h~L!O?DKO+^X|%2}yHV)iieD!I9r_3QWw*0|k0MjSnF2m!+9t zBl-t-ej6)%e|lR}&#vJAA@8lOe8`<$NW&GNw`8gK|sug34@5Q4{0mBK^fZ#Lwn2U_g7s zW-d^?(IN!hp@u=`Nam^E{J(NhXMa*PR_6x@&JRN{AefB9i1Dk!JJT=}=dyn1->myH zPnpbLx%_S-{6PKirH$(=%fnKNgYB;ajj}|T?>~nYqIu2LNq!CgoTf6rXa4IA1bt%E z{6()rPNA5RjQ;6__*yFG7S^!lP^sl%#g-I^oiBjL2!TRLdBw(0p-r)&q^#w4ffI_s zkA}p*z+BkHwhxEVW5dz`Qa%i^eW}Y|19Gyg!pj%{%G>yvdiYvG#J}bG5V{#8yPY(J z=GDGPrqf#Sky!$K*e%XXq`YJ7onV>|d=P{0J!=Mg_ZU z#p4t;hkuxPLfo$HeIybW-wKPjsu@`FOP&1O#8JKqc6@npz0k@A1)cm|D`gONQ*NkFU>y8(uY$hflQHvzPM>;!_F$cmn0nDf!+TE4yXL8-{(JN1xwE^+P!Yq92}+8yOo;C$m+#!rlVsxdzg}#)y*{y3^30``ua`ls(AsXEa&umNwppiQBJd zTZ)HN=r1Tb**!A?p*D5Hp(x> zapj_npF0fPf{xYzE;&{>dpK6U_gx~h_D+Y&LRMh@LhYl0##EYs* z%@&RNvN;3;C8b~JEc)cr_1sEKC?_dcO)u*mJiZPgM$=2eyYy{nz`1sgV1lJ+J=sz^ zhuC3qeqdKoRt5CVZJbps0xfVPT!7F1MZ3Ib9ds~Z`I6qXvnF}agBJjkWcneU$_~rt z_s4|uteoAsC2~Jqd;IS6TJBj%y`yno@7}vcbU2d{(7(~LVx*WH>0tGgU+OIf3ZR_$KzQ{;8h&8r} zq#tyHLRVIYXK_b^$;^0lxQIK@Dc{VB?tIH)J?1Bq-To019;QT$bOJ-<_nUEomYh?a z>`|ImK{@dcuaDO3KswPj?DwSFJ6?H=FVvb3AMA$?6+IF?532g)v^ci-fWKe+%KOod zk8{eF26z9`Me_yY=S_zaIWXSkje1t`%I0oaZvV~eH9xH2_ zp~O$BR`fEQ#tp1nV=vT>{vrpq!=`+zfuG^jWPICQ;rVr9Ks8c*`W5 zL9w#pnaqxI^QhbcRS5ypxRh;46}Fd37{5^@9&?sH#wD@N5Jm9DQh>s7MFAoke=IL$ zKC+hHuiq1hNJay*El0l9C6P$dVi;85;uK=bc2Bxc$x_2aMca9cL!GbcTUusi79I>F z3dDUFW&bG2be2pvQex;qATshu6{=!qQ||rKYpG}D`hBjNngKm*15t!RH9%x!lkbUH zz7>LPLl_0~rg;4fsQPFHQ+}v+wm&-aa^-hm{Aqk9(1de0P#5{lQQO3vSCbro=Gx{u z=i7cvt;8?{jx2q`C)@pl_ceuR8Pn+utr{DE_D6@QV6VOH#oV~)&M6~PFc}ayWE@3X z9Md;kZ=>wm`!ZlWiLAROIO$Ty_$i_@oShFjH!s(D&TYQz{QJ@DC+;}#g6<|0Kh~Nd zg8!pDFBpYVb>MpF>Al_%FFP6;j}S^_r0PbyCz#l zBRw;b7!fBgNxlHkU-FM!p)}?UWMuTSCI#*inUCKTJaxO1S71Xwb2U?D+Gbd9QJdw$@bi^m^urLK7Z>OeHIi-e~y4ub@s47ut8n_6#iqoW~H z3(t#P?^TljxVgSljIDOH21GKeI8&#>2_Yt0XQ>+_($LfRCOa-ZDJZ6_Uq49@Mm9P> zmztm5C>XD3J6!B%fHxwnAV)=?-G2G>@Jo6_u>oP(46|^d59TSQnHK~td@3%ADK&GF zh49JQxI#zm{wxz=+#gK+2LVC;zNkI(+WV!s=8NTr$T+Q`q~1eobjCj2F5?etk(JZf z59&S!VcxXA0tR{yIOq{!&_rUZO>5!&L94m5y29QirGmC)z5Vl62!jp;1-V>)38@Cj zAP~Cgxmqrfi7JvA7k9!OA}9zL1cH^TESq&+Snw>}Le)Xk3zdAT>>zf7Fjm3r`;~?9 z+=5eDh#{eJ8KoN(BW3uj4}(_75DGUqV&Q344~4XDaIhPM;rjxEmGY~Nr#D`E>#10M zI%=HO@FS_g&mo&(nCjWb^aK)`Dgh9ZO|eLi2*tY`j6)L^%8l3rf{e|qS#06l&i>lY z&IhkM(_sj1UfBHkqYDUwBq#_J60eYf8F;H|gbdfz>_TygdF|J3hN0KsAF2F08$#!)CR_`Xq_dg{~;uv`plq}Bs*dgYjSOOeT^-z9DLPk zPPJ%_%-f&8e_`{Z?|!~ubKy$CEI_d6g5>8dCEVPzGd)L0gM#w*;rv5%l8o8_K1AK1 zUe=#oiWOMdDL6PP8@#c|UKwYKp_2}dV)8%Y#vDCH6i0btwHxFkwfM~isbXKg!5?*z z{2O)M)wkUJpiFn)ayk5*{viks6B`tln7k_7;1>(?OSPFVCXM07X$>x{A>AX&NFfvaV7fkDWRcnkjx+v0G@X@Z$ZEWcAe|KaN%29K(HtK+0x`lIi^^Dy|%+dpqo zD+mx2DPpLbre-ivn5xw0nh6;M3!Vr!={T)uX)!qlvs0y#m%;V^s%Oh#I}Y!y-+uf3 z_usZOTET?t2F0H@g&V{fF7T9KGLIooj4l}l#om}f7YUTijCzXyg}UaJ`yPzYt@qq; z^!VgZIOR88!PD15@n=LEr@i22Jl4^9FlvQ20TVB&PdeR@h){X=iz7 zg&my#FcB`QdH;R;!i5Vz|G?i68HAu9L`;M66Iv_kQ%xq7bhLNg(=f*E=H@Ziol z1U(f7ZF?zGc3slFEwuH!M?a20|Ml{(TksjwQw%mQn5zKc5K?(4UcJH79WBxg_E6}n z-wh^vRiL9Tl7Ek`zv9*q{*=1=>VGCvEFLGDHz*P#f`h$G@jJ7BL+6}5sKprXhw+O7 zlk-hcHXW0BL0w>w3;ZC9o4tAa9E89%)2Ah9Ypt`sU0q&Xo?#2CjImIq;K%RVzkL7Q z55H{L_Q#vp3T6W<*bNG%U`I?&W9Jae%sw|WRhh3W@=Y;`3TEU7jij`bXGUTKgJ8=N zw%4~;7R_}eV)5GVFLQAOdbhv&9oa!~-1*qy(5Q>#U!f~+5CK6T9`Fwq*b!d; zH}8n)mUwV%koDZ4z#x{9`g5Ig17#WmXCEUF4jicfOC2!iZ;AakYNzW<5+|+hpniS< z1=pMFY-u_B;Te{tvt&Mg`~64WzVQCf_RpVxWCy}QK{o|8)7~wH3-<4beO1c!Qgdql z+oieM%=qA-pn9BEGz3*Ck|mNK<`>s1KXDT%zJw6sz z1q`AdI$s_QM{e+6sY`?1@T2ggZ>lRU{ktJJ)bwcvu|e-*3}KK~{r!z2srBeeLHLG_ z8jP+P1Qasg4fY%%P(SAs%L28H@mP zLUMA7kbxi)lJcO{6c7W_kd$O2T_3J$yLC;qvaO}`Awaiw6WT;KRyelNO-L|a94EAU zh5zy2`Q@LVoz`nR-sEe?cDihwF5G9||L^IaUM?nz{rYgRR5Z;HLBSB~VGxghffTj) zo5A0lJW2Qmi(B%}vIl^W^9V>zfRIj1A{PG01k=31hI0&;^h&WjnO zf$ZQFFoTYE;s(83v9~`bLqXB#bdmgj1rTH}2kL3oc{AieuZpcq84K~Oy?C_0iDMYM~Bsrl$!Z7~|b6x3p}eC^TS)vF{w z>{k`a4-h3m?+}cPC9b1 zM;J(1NTEpdD*P6R4K_~f2H`7&v+FNjWY8z_8-ziJepK)!l8a!9qV>9t{*OBJJU|fX z1agP?gYSF$-eroRczTDiK}e9mXocO4)7n;|$T&W@ zf^elEEX`2tKHxwS=t(f>0ua(8?8s?4nYvj~sW3Y?yBJ#^^`&63Sj?KT{L0lTn;20o z#tAx#PtM0tjSNV$6SmT4Xm^VVEf&-9cxjMM72k1@jKC3vbAv!DLczKk)q;>IrngsH zev8oL^B^`TqB;MtO1|k)@Ft2I2D(A-?=JGt-Ee}ETFedh31a+p9X)-)dYFIVLXX>jq)iAnZUAky?#ddBNroYC_^zttNcnq zMKUNcLJm#XaZnIjL0m8c!rup>AQ4RsJGX|&Pspvs4z|VyWtGGRBLKkG!0&mFf`5U% zl7s37n@C85f^`UbyE2(W*-XwBM61(9@_*7Z&!hD(%8dl+#NKl7$=x6wFB1hf7+Cek zhwhxiK|!o`71Vr7;0RxQB;eR!7dhF%Od?fly`VIANB5_oteM53j4jJm-=LsIWh93u z&5?L*!cr_ZD9CmZ6D7xzTFTUPE#I;n#_Qp_6e(0tFoYY#4US(s>0yvszt>)S?N!3V zM#&5m5Awd5VpVnpttKteLE)#Ku8{X2>;@e*#ReUL8+6{QqL|J1r}B;)R6AWHPg!6E zsT0IC(kDV%!?)~lxlD-IAU&frMG`ztOXz7gPAf!E5U<99huncn2(W`3@`Lonx+SR?AqMqhyy|_LN+a5){Tr=XB-<8 zL=(8`S2;}QTqq1;5`O)pC&IwjW;ohf40SW4ySTwMoGJEpBAJne06WM>JPO`%-y=Kd zzbNkZ<_vmnFrF_f*>WzQO9^VCQ#bgu1y&G~E|_<1ad>DiqJ!Zx#dOXVoy1Qt7&uO= zw`hkLr-j7(|G7cCaq?}4@6#I=EQ&o0LL)JR21QrE!L`MkE(Af5DB5bIlF0YTAhv0Q zsyaJ6KUpnoESVD(y4q9lkHyGr(dc7cE@Nsje$ZKRh z>}8IpfnQ9fm>l&nTSO7&3xtnEWEt`!ykC|kI5tQWaowO1=`ZG$M81?O*+L@O=_2_* z=q=BI^Fwx!Ubi=bUm>quu8R-AL-@Ku%D`@~i$qm9f5m=TC<6w=kED*a2}q&+z}xiE z`8z=di9$U^LNVCojTwZY`;y2?>K-V}{e#7z&%SfMQ}#8cbx!S#S5|r!RxehEHyx0@1a{aAgbBA{u6GX!m zb`~3S!-CWn2CZ$&=X!@r_MQg?aSuuGx)>iYV~|M_(+9{DJ6G6?NfKMMv^F^2WQ z7=v5?u7VlF6omC~U6wJ|Gm=`FSe+cV=2t9Rp~CwvX$dc=jOF%)H7(`~LxAd?hZ?p5ji5}S4z^yvGJyy4MmK(6AK@KTZov4v9es41SG%hAn=6OmoG~ zg-HOjdy$BBD@ZOXtsMl~Me7hGa=Ykw4hy+K6daV}<+9kFOJ$0RXc}FO2{WC7nWw0O zZKkSXF5*XQ2v2IPXiNb+0J zQm&lqQuO|qIhNO?C{+i5Pg4ip2MG`)>;!`eNOj^96oC|jgoEFw7$iD++PNf#AcJZ`}Cj*5=DMHZcTc6cjXcdwxZkm|dT%ja!rF z%^2z#NtN=$`DP44=Loif?%BQDprB;xQn=XQzZxsz<9I56{qndmc54QxMKi^4MyMBb zO`*tBR#FJkM6wuMiP{c>qMa92ODvT{E78>_%5DJwxpd6nQ`Fm^$5Fu(C_adU5lC&| zXBz|r3Vz0gAURwTzUi5ruZO`62Jc1Uja{W)5I56-_;W*J{iV^n<^JJP;5e;?k`*gx z;e&#~<=NU;?{Ws<=zoB?mdGGcR24lZNF)j^R?wdN%hdeb)YP5TXr#I4m;?ohst^D9 z=a)AT17$BL2!jPHYqhy~b6{=4PEA@%X-&Zx?9b(L1*5@0u!6dSQM~=IzU!c%!ez{Y z8p;j+1}KQ?{pe-7F^+nM1F@N6*ptblUc`Y^L~fK5s^m#Ty_4kdEf! z?3j>9DfLJP{en9|!KbIgA4IHcH&~&)enfpBP|)SzXFf~aAn3^9?J5QVh9TS_vmXr#(u$9)m$_nD9FdTY9bfQz2M(D7aoE_=KQj~aAELLQ%s4+lePi|Y>^AZ z20ajp4i`n%4bHBOkNi!V9NCzVTu}(hgn|G5b9yskJwzCUpkSkUxEepTc)GT6sWv-q zZQRs->ZQ%o#o>yBK~1LuE66g?gP^g?Nl=%HVNlM2#()9%DBMiqd~w07BK}qGuB&od05O&Oam` z!Y@l=%uZDDvT3I5a?Jh4Cgbu3 zWNpcBwrVWfm+L>>KU^`jSc?_ZHTL5hYc(Ba?C+vTMpA`rOo}CWd;3K(&X4>UXRe?h z_%W@ZruEZ2j8@>`^d_$oc_ehDf*0fgwOGfx2nSg=m`#e^q7z+^#FSaGW%_+d-GqZ( za!l%!Pd_C+3ofuFE(mIi$*&*?2D(8ogP@~tZ393Y8{EEbkQzZcd6jj8=U#F#C=GEO zA23df=c)^(OhJfArG)k(3JQkT@tK#3V*|fR-#u444_?HtsTfZg6rh8Iaf2d-V2h-U zl`E3gLP57s=HZQp4>vbAUv?g^G8l|A3^X)rX*RL8HgI}lcyzMIHWaLEU;jYm_CmSf zAy8)_2q3JjRZdSTdYs>VrJ!kLO^(ZoT9~@QuX%w%pHZo>e0@y3AaaAq_eZIBh5(`3 zv`&^dR3+M)DL&?iaf5Lwp{Qaa*KbD5R5At`tuFG?WkGmdM^8lug9@ZWWJeGL5e6AI z*b2fUZx4XrlVyr&nG6jOG8hyn2D#h4f#bBy0j_jA9}`|!&Lv_t3JQi-o}V5p4WIit zH^}8jIi`igXQTq$@Vr3}gJeAnX3$~bwd=Hvq&hKqUII1pBh{C;w*DRYr(+3w|9Ruz za+Bh$6;umxZDVv}b|StpJGZ_P!!bc6)}Kq<9nNM-3P6ym<+Bs!ymES@)*KXcs6{TJ z*2BmCbl$mUlY$YI(o1kY(tDc~iGFDGHLJU78^{>Wp38R{;gl)^qKb#{oX^)0lpcBEfEu)zL%SWs2z$ zrf!g+kj4guRt(PAL7j8){DN&&Z8Mb*2$H-k5Q!27!VQ6!dzCl~dyrm8JE;wTVlG zjX7J>5CyZt#aJ;}E)@r3x+h#INR(Qe7+zo3PhV*S1w)OO2GD))2S4cIxVRiCsC<~| z(_jXFgCGbOM*`ig4rhv439uY)wAQ&X!U*9cwu6e$YzONQbWXQmModZZe19=3c8hsC zk&8A->Jn95aMW>wPe(^s2BN&kiJc`!ATiR$4SMC%etLE%vB4d7kpKa^>Jb*!4G#Ua zKX{xLUrNR9+7Y!<%5YrFKtaLqx_vrduJzsR<%focTZ*djffmLfL1?%^mx1I(z2Gai z{(kEfzd?iGFRtF$+PYy~C5e(MK#*EN@PfVO{NnGG+I(qc)tVcRX)Qj`d7msNisfP= zZ)*g9O)PXPr_AQu=`Kl(f(A9jPEVca0nkpqGF3p;PHi?xF+28Xz^6*x}o#hJn3#GoB7 z^%e6O19i?liS7=h?w(Tnezh?665B}EZtisB4y7`l9gIfEl`(_UxBlLQLHD2#1Ps2s z^)S8ZluvKs^{_`lD}H*awzM`?UA?q6b>4Cz2+~a3P_)5;N;#YFQ@rJHP-dj^^PaW& ziQ&ofAEjRKxJRq7LBZocaCD60WGPHfF*bwP4#E;1oET*!>8c1yfgM$}@vhY`h z-7yl#$2SgicHoSoTeQ!vdsU^F;5YDD1R=Wkkz7?>=SjDf)Njb zh9-bICUD<%Ft~sC#LlhYmv%xyx#~j4t2DjOZBms+J@5(HS#az%hEnc(Ds-omd z%XbTBm*aa-DfpA=>l}A=?9@!|c;$E%TuA#45(b6>y?IMwz@WDzCVGWna0YonrjO3S zpi?~^3_&gX`=ynMODl!bv#VCES3%N^{-HiiGZqFk6G{brgMu+-Z9bM-8lD>cC>2L3 zSib_dwp$OYwuiwBPlUlAL&+c#!z|%)XxJ^z_)kUF6odxlJ>tH)C7@RW3RxqR+4ARlJv-o2n z7@R4_7^Isrc@Ka=K5(2CpVIhhwNg^E*`%eRBAM`d<(1z$7`$EnF4z0>3n)eDJA$8G z5VIsCLT(U3gWq98gBXK1UcONcSPyH?OC4BTpB-JE8<{<`G&c@Z1L^%kxs+in6m-3P zrC?_E%(6bww={Z;DUtyaf-h{l9+o2oi`@C|eee7e4ca;$UQ#Ddshs4fz(Y!C`&{5$7(wKynbb<;2{ ztv_RmXq;9kSr+jymw)2?xvvPERAwg@YNI{vrpqu@gF@3LB&-`G0E9+5={n>``~rg! z5I_*5#;4Yl%>2sI#wBZQeyxJ7pza(>-%xoduhF0&jFM>yAzoThHdc#g)?a7}3L^N? zckatSD5!9o97Ki+@PRH530Hi=q!x)ONVe=(4ULJR`3KQh(ox+wt8P6{=(J`M!^j- z7{ueWBC%z2Sm-s4VZC}a7TH~qOho0RX71hXWiuvYr`-iIWgW_qAPEo}WKtw-H!)C9 z44@!z&}yOJ-0FNSU747lpPw99vMtSj-#Me`U@+NO4>wyu4L-NJQL}4nbC;MQ3IHlE zKDh1f!*an?%tB^YZtyH>qr(uSH?OC72D?EV%4klU_}Iaut;xKdiAshjFhj?o!m-Ov zrR=_Z90qMUlGKFS?xzkvhu{{rX66%Z$cG2aFiDbN9SO`8hwCDN3<+S68K(uR z+VQ)Cx?$gr&t#>rK|yRWT?}5k=Dt{+8aw^nwzCHDUQE~xvJE64SQ59RVBBD&#TQp< z^ED&0KEI(@!2(llZTU%aURK73^m4X03Kw$IwnDdoUh{egg!$LGX z2JxEs?DoUKU!|LLvcnJr?*Sl(&0q@zr3}xd_=2ISn!u2jPMC4CB!j6^pDuX=X57t4 zVlw%AjUJs$@l(+=bO$LhWD6+tQ%xHNScM*AfjO05r8n> zQ+09~vx$+}_1@X|QlW)`v9voq-xYm`1$55o0~afm+J?Sxr4bZlQ^WX;3qe0cqk>=< zlE#6;yTP+T2@<@2@U(+KH$%cRnPMhA5^M(PoAZD9%L|;EkT}s&7>kJO1~u|!00yIm z?nXESI3PCI0pWh>eGKG6W=3#Wuss7&Y_PqKKEvP-*})yf231ZOLTL4P$?K`U=V3}=&s{C%ei8F>{9zoF~kR%!PATzL?FajVvIpGPGz_lRC{ZS z)#Tjy#C&b`R}*NcVEX=}NB7eV1e^ApW7oqOWqo*l!l^mD01))44s5y~Z$OaISGvRVWPNM!Fqr9Y``HWKk?|Etz6KARlZ7>GMD87*q{8rZUuoPq>+4fsPfNIgdbag}0{D@Q5c*BR2>;kf1Da00!lFlL!PSS1WT9 zlb6P=>f+L9Tyq3wFs&@7D-Rx3Fa~|cOAk((Yx9dEOVkN|j5IR>Z4z;y_C)&P+-XKvFXNo_{@f3rqIatbcFR0aI z?raQo&g~L|7RN{)o0z^@JTsK&85+13=UOu)n1IZ)5a0#@g4?)3fFO85_0sAkRbARx znw!w((*?zaU_;Bd?k_*Ockj`oG!T%1paRNHD8;4m;o972!wGt{W6dD^gl~c%GJ`+i zke(<-@@o_t3=%&>YGq*NDrAarNHEw8c9EUhVOLKEo3IxNZKsnxCuqey2(o?<)G>p5 zEJzZw8;yk7YlP@CVIjCfH~3|!qHeW=;pYuT!4gKB+#oMtW9et}agf-cUCt3hNuS zONK$so#zD~-MWA8e(ceM2lp5X_Ui6>m|>}IVL|0tKY@}v?AXHa)adg znuEb>yTxGm(BNwh1<5f($>m943?GgRvV0_FkUpZ&A-&WwNG=gqaxx;i5-1F@I$^hTf{r@pc8NhT z!}!UW635-0<@kg-xWs{w6>N2bAnXQ3FoW%j2EhulUT{fGt!*rtwUPYBWL#qw#Od_C zTlXF~R`9?7VV1dg$64{gn0Ql>w?a_0j331;og)(z62pd~gWu!pDk8#^hI{SeGqg?kt)cp@wX zQ7fHqGu@ZrN^US@fq)M#JMAfsdZ&9qZqUjs_Z2hTLf%B)8ZIS=X-|6I4hqy z^#xq3fyXLvzD0xB4T2eLS2IWXw|petnwTBMhRk3hnd6upJY* zFtNe5HG@L3z;u!TAh8|f8$HDYf|??Ff(0?FNHY1x4*vE-&jt;Q*`A4Cd?GLCoZtrA zm_cA5c{qYy>@$ZBy_4whGXO!x4B`|Cx%#@nYPQ<9kdb0d;FCmdw~88-3I`HMpnqoQ zr3g1zx_!5@{cwf)3vNI{>;`dU5Su~Y^)QjDsl$`1VXXFesS!vIFQ@N6c=Vt9o3Zqx zdkUK%PPWY0pIcq8>8H-DPH^5hEy_H4!@)ti9>#8vHw}2R3k>4vGGF7i5osZDC2$}n zQ;cf{;Z4C7=o53rt7qQ(2PG(sMB_2BNrGRRSWG69A9{Po2kwIoZ@cux^R!U8U^osU zH;DKLPv8mM+Vh6V9;_XD65vCrdQGggKDMPVg;A) z>-X;|Btv{_SxHxzIvErcRIYBEUYj3HEqeLk29H|i$3T{tkPf*)F3NFYfr|hIcNH59 zpCOqh2!tV9;0GbwfolfciyTb}n#TSZ{)CpuqPrWD3qm<5iy%mmcp^{fWYT{3>pBAM zdH2W(+(WV>5ekMhgFADBUnVa=;g=i5gNF`M0#Xcm`qsCeKX@1rh|8y;c-k*ExKOfY zP*8ABb$N^1+~T=vj?>RAalXQC5P88MHz>BsuUJNotE$>$1xGH9s)o9_Q8DUnP;-@5 zG|vj&y8q~w6Bc~%;L(Fd`$&vZkZrW9)UFJyZJb%RUO<(C?ww^KKoH!ZtN58@T#6Pr z4fwcgH;9L9wNH?^dW@znz;;T0W>B(CRZA!Z8Gek+Ak^B>E;^bkHh_Qh-kKyiEkGAo7Bt7>HtnAPhosB{$kr_s%2F0Ri2ELXaE|37>rf?kR>$alLlB z8^s2RQdJ&})7m466`9-~I(~4Ifc88vh~3{l#03choeOq@I5z?pawC`L40 z{AL4$&mDXwu#2SI*A2S=5%Q==X0K#w^@QtnV!4X27A=zPUP{M9d ztqWGf_T=pN{CI6nApyb{l{np+U4wvM`jO)Vm(vfHAEjFo#0qN#mzL(|rbbd5cQ}}_ z-w?P$c!WwpuOncyrjJP{6l zl4YPvL4rV+gx{k2#+%>ZH-x_%f`dM8ki3PU;2tVgpp zoFEQYPP3yG9JM!tvijnS3etY!<5xXJCY8~oP}F*yBOM+AfdhwPvb6d5Ef zAX(nb@`|c4>tFaIK)l;WOrwIXnB)kPB%wjU_qrDFz#CrQA>m%@`4B#Em-T`k0-HJb zS#X2EKLDS5gXb?}FX*{J*9m^pVW11b77W66Ox?b2kQ~rCw}%o^yw^;(>0t1mtv>T= zp?Yelzy_HD3aEwPOfj0Xg(8D8wSrAcV!5_5H+!+C$MPuXLXg@#BcI9|%TC4MqgxdP z2uN-*`WdRh*->R}^32@galHF*%Q!*Ei~t1T-~F%u_(xLA66Z7yQpesAM*OZY_>ik?{ZfP>zOu@89 zl`8iqGDiB|f9~H`e1n2eSNQX_JDL1iZG^WO-@FpfKaLWui}BYqP{5P!hCGugusN5^iK6|x$%+cYc|tzB0b zbzilu9$MX2Q+Gv`R<)EgTH=VteIzsz;tCNVG4IYh{m!$`%yw7T-S5oK(Yj?n`98<{ zyp3K;jB5>p6rj`pC5GQ!RPnZwJvUBPuJ!41@9r$_yGZ9BymNkY<@?W8v|~7iM0{ zxLeV!GtlN-%RT+~wsa&rzv%Q%-Qo2z3;3W9se`{4yiK_55xyiLKc zv0#lZtkeFG8`KB}Yb%lb05iy?`_CB+$GS~Tq@z)+Ife)ri4{~kwU>byCc-4~8||dv z!43qsD?7pR#nx7E+#qeMdS&WaK@44A7XcLmDFykMErmYZkQ+pH5N;5;!7HU5q#!(c z2euapvV+VG%BO}V1^I*-{Ylb9*fa82+mn4K_7{ipth*MeL7_orl6Y{ zgyM@2&UY@V%wV}VvQ9#?yJzH{F1t`n$H^!Nf`a*pu9eyO)zP75niOmT2q8L2hP%O= zZ44?zg_s-E8s`S9WAJs48RT{_%rb*vBP@iKDduvq9Q!l8H;fl_1L3k*rP#rrs(B>~ zS6fFpV?-1Lr5m)*@@*?P{_A>Wg0~&nlp8#gxk1G|UK+veyc-Ax)#28O*L9iv$iNsA zX0T7O-zpL`$%Ota3^L8#fA6E|$?j_>r^Y+|`^$n>6l2B~%MEfjn2_-EU@&ed6t-m^ znVra_J@t|GU^m-g^^CMzrY#x}n-%@iGY^}k-UlBcd(MG>sFLt;THFmv41V2&SCShP zntW~y1}~`|5?3>We8NoFFr?v6g~L(9OH8J6?5whZF8?F|)dMQUV4)t*6$;1fEg^__ zxO}&7_GilyHbVQ=77D`&A}@Ga9aC1%b`CtELc+{o8F#>+dIAp5JI}XW=1LV3s|pEl zxF;}(ZW(_!7*;>{Q!p5=#9;fNn2YrFmYy8Bx_=T7)NmpmW_D25m>Uf2oHh&zKx77! zSKk;_tBEJ`tyxeIvN_kD@8~W#5QHQIQAjpZ9j1BD!|f}@8$(Kh)I;PWB_c@*ayR(Q z8(%+)*FVb*R$o)ByCLxp8iN>egD~xyQN~~_Yv{CO!u_Doour_=A}y#;$ScLV9QJV3~l98&n|N3XV6gz1c=|T)`s<|47rc@`7r<4DTD{MG`>JJT>E&D|hW%?*YcfWhjU6kqd#(rW>j^f7}mAquQfIxt_UK!|`?Rg0M$Ov#mV+X8~H zg8*UqvK1URJR}Zo6-0sfG&Bs>W(5%tt0TY-D%5!^#Ka1sNCFOCuFRmkzzjlggWmZv z)D3D{1P(4cVWt=p$}476oAud`$92T3BgA`>>B9pU3o%7QV>C~U(+BU7~lp$#6Q^$@=`HR z3|=GrSA6Rg|Fcz{vscbJW7W3<1Qi3xXZtNnxVey+ zV~?|Nvkik~UV?!%HHh5c#$mBMq*zR>+GX7C>C5Pe#dI;W%MdpxVi6>sl>2BX1|!4N z3qF-P=1WkODl`BFMVl92HGdQ zVCI8w-ugg|mXYg;A=e7J5L6U=c6oK|o(Xeu3`s#US{f+i5Da#Mp^e>Or~&QMNDgue z()tJ&cBWG$ld>5URn4G=e;^eHqmCU=DK@UYx^V11l7gx-!rUMrxJAOvRf)m6VC=yO z!V1n zho;8vc_b225@?gglOiKJ1smfALz}^%(n-Qsuf0$;Bu1s!6BtLr>X~H*Q6O$o@h|C@ zcA9zAk7$V`Vpm2^*k3|W#lsYWI4iW(Ojx&eIkhI8UvH6^`#^OfB6bv*8$=|`Vq&Qa zyp>`E#h0s~*ew&o4bt}Mn1UhPpgP!VLljQZp@N;wLOeO15TfVl#~1|J@_WJ86mvHi zwlT=eVAOCFF9*f;b#iw4k?8XDe0DbOLNMz5#%V5Jp=8Qijje_RLFo)v^ntE)Uht0L|LDkN}&z#pp*!wTARuBQ?Vdgdw+UB=y@ zT2%a(xk0W>Olz~l?)n?=jz8s$hQ^* z44T3U`MW`{8H^ZF`zR~!WCnB7^E1mIc0MsP+LFcoBev|MpzQ?L*493j7zF3w1+mT; zD@X2`Zh4x{*bm%m#2GLB&v1j!0E4nWk?KjeQ-+7cyl;>Zkgb}-KMCUCvKK60F~A?G zLX{LO$dz*nf)D{AXc(w%w@6rv4%)a$hFd{(J+l@B(jFN%DOiIWHiu?zG^GqrJZvA{JvXHY1VcjnW89#u zk-!h0ikBYDk*rBgdj-@0)hZxbqH<+#|>IV z$E~2NTWZV*(n>LCZY6`ut+h_*o*6jL{-=1!CLY32sYigrKNckO^^ zn1+Vj#dIgO+0Y9Ms&{+(qMr?ViX=4Mu3l@+4Mq&bK*d2hV=!t=Ej~OoyZnS>1z`rW zHUz)=;Hz(1);@T(j6stqRk66ld~s#k{&5DC5xEJw6z!7%2tl=myTMR>7{vH#=y~)f^LJoq{MYo_y-=lluKzgf+IdSl_@6CZc5lgR)tsEjG0@{nX%7WM^Vq z@u9cg`oPW#u6l7h?)$_p4+ zB_iGmj_at8+)%3%gwCvM)d=4F+#m^wX`>)+Kp{&GN(8zgG4C6c47}pvi(L$2D-xa? zL?NTU^sIQOCowb%@3A@QSq}zp9IMRBkMwr;cReOr$hQLk#Kt65`vwgI@vxMUFl;4^ zgdD42#3$z;dE3CCLCHad!Ee?+e)ZLFa<9q~$&fcBP9>=o9BN%%SstFbG2uGFkc@>L z5K3`7s0sKyfUtpXFjOxF5fyWRg3pN>FsQLrKeW^@bcH~=dQL+C?HxYoaI#Q57!YKI z5$*=7$HUHHKWqiZHP=TPlo;fzMu0!%0&yp8gFGsx5ix*R*16?)n9dqJ>$0;P_F+}= z#Wn?j!I(VDLf;_yQibeBmj3(2L;76%c$fN3<0i~-w^ta8-aqoxNawp(Kh-0uB?l1| zD^V{Pb}$%8B-Sw~75nj*R};-LD1K^cEb1Mxm3A@s@ds=158nHDP4>%tp7suu#>g3| zS7%>(xYrJ>pA{|yl?hY_o2yFpoCEz@!PXd zFl+(@0aDD|Iu1!e3PP}u1;ku{ADp3mYz4nxgCHNz3L-3aAjr2O zp=A+uco_(tkF7c7MK;X1v!_AAiye7_;+VTjCvt;CbEWa|N1x30S}i43K5qP=E$!WR z?|rpH3>SMIof{Q2Ifxt~Zm1Rey1|5$#|<|B^wUp2mND3zjnX|xGHDlsb0565_W7C( z!ME1D)e$;)YjSY8WoBx1WunuwXvFb?E(xVz1j#rpz$+pKdW}Eb4f5O|uN8CEN(NLnd&kx3!Q&7ey^4no2_zz>IgZdt;B^&>UbichO+2PU{dRv_kX z@C=$8^ravkoV!{`f(nWBgjYHTWJkkFSMb~*<_*&C)T{ji`uG!~yYKGDSR%gR7;L{= z#F~dY^5VtEN)Pq$`2iG&P=FhZ*a5MN!DibHMq@v&V-VB#T`4#C!N=cx{!Lsq4t_qA z1_hIJ^w!Yw^uprI!;5WhJS-vTae@v3z4NvBo^w*sQhU+LHP#J=>ce2L9aPm3P_R}v zC{OAJn;hz`UmYT9gy+b6pqWO-!yJMEBn*@agK1!_P`E|H+U9GW&qvABI&~k^ga2b5 zP`+>E1}Ovy0U<8~-M&F^@UqL-AxJQoaC3v0H%Rnu>B;eXtQY568@03q7>pToU*i79 znmQiqnCtHrbEA`lfn+f%&kaf=$ScKh8-q3nqe_O6c=4w)2Gx3E20`TpznNQ;OGrLQ zqjNe*r?8GC2PbapeSB)-!4pG{yoC`dc~vxY$rEBeFCxTXG2dG%GB-%z_b0o-;OwA7 z!6!w{7z{`bs(4t1!7dAt6m%cfg@zhHkZ=%FWf%klz2J8A0#~>d9RJ~w)1cuk)lDES zyey(_(3#G@bZ5A^LEa>T8;^?5CF5lZgr$gIVEK z-|*!4-CZqDM4!Azyco2mn8wDMz`#M~1|2 z^@%43v2u>|3+kS#NadcL_!DS6%x20UIT$1`P$AKUA0DL6YEYjHiX#MrY7-K9LEj)C2o3^+-c=;j4aRyN8jcHXe0V^-Dtr{$BnG3Df=~6g zkN4j#I_`S(#R0!H#rUqk43dDDYrGD+*E!W<73DCIwSzj7>;W3eF@~ zmggtzLHjFHqp7wg5%L(n^(W_9J%CQ?luB!b4lCSN%;kGK{oSC}SU1SGWP+Xv!r*J7 zPVwYm6PAo1E=H3K=`~csW+aq?@&X2K3_qOC1r#K1P`+)E(ALo#gv93t((sH85vV?# zg6?Z&iG=M%!V#!Wstdht@N#U=X+soUhduf?o*_#jTkoreqN`Ir2p84PGaNAykEKWIE-5WZ3Vr{ z_5z_#3O)-C5CB&thups^rF6-*NXaTGNOwrpX4&dxwV*>=qZm0CArHfZwt1I*B{K|Z zHe}!Z#@Ow|`-25@i&(F~!|-`J`1EZJb))-m$5grkN#{4l?KXPOHzZe4&+O)|MZ3H% zh)ijHLOy_K8iow6L|T4HMEr)!W0>KZV&tm;D=9{84h^%$FW_I_XrEB2QaPV&2*NW{z`TdxwoP_ z)}~2F?Y>kT@Sh{OkdLpaLPPu$d5E@PJ?E{CpG#EOe3 z5vVVGK!hZzoIq;F)@4E~)eGA?hI;?szm?Nw^b53jY%7bS3TOFtV$jyJ=Q1U zEoGL8$T)5}L~8tGv~x5;egHdX$_$&JA;S=cmWul#x$-P>9zGAS?;c`*#^{s$Od?D^ zmC2X4J%%qAWb* zcB$3yb^HNAu?{zHnt=(Sn(O{|b+`N9V+&cFlCQRb68v~h$4@S5foQBvW;1@9B?Vdf zrA$7cr2!We*@7g4>}0J4?REs_+tPcT_WRG<2D$7#{w%P_$WZ8DcVu#|yH<$idK5Z> zT0n6%^(|oKzk7p}B7*&=!B2?e5=uxiV~ie3Bd%80+%D04;Z^Haa`G^o@am2KPEJZ- z1VckYBFkOy`J$dvjPs00jPlG^qHwL85*#l~$Ax}U6AE%_di?NSq1BzpA>!vrg}{zp z=FUeWiz1Dg;3UDuQ~z{n%9RkrrM*`P6&}AOBG*K(!$qihH>jh&h+YF9ooe-sML$ww z&$E37&P4XAe(Ex^KO{Malrr8Vy1?!Ng+ES~lwQ4p1@)mGF`=IF6$)?@v(<7Fp%RfhyP_MvUzwkEt*Ldx6nTSezGr?= zQ+JEr@R4PXb=B3H)rem=6x!=l^gnwm&!t|I9RB?Q$Vzs-Oqh(W;L6*pUD_>MHKZ^H zA87XB9npRCVIguu(`=P|NKkwMW}}04>#ECPYQF~E@J!U7)f=ajw#aCU84B&JLLMLd ziCb2}Mi~f6RSdX8ze~%BE(k1r4qIZ%@qC+VFJ&KrrqzIgl!X;d&30TPFz0s9n#oWU zVddgy_lJpjhluxn0zTT%xNzacZjp( zUHEqT_h%@gG4Lsz>|Y&Doy(j!6>6Dksr;Nlu>0=z3h}F+kRZWi99fvM976LLPh|D~ zi##7x54qAz7=zI)S_XQ(4i4*i_=sspx9i^@OO5}UESglBpCsZW#$o(IpnW(2YO(_m zy~_HcQ>zG{_xsWxq~+(l&%(R(`?=wtV*e{~h^gg&0X0F(T`N5f?A^?Uwd79b?J?pGuR2tdg4I{j5(djQaG@*2;;cpArlBLdPl@{7#um?M7hvc>WJS6ZRCG zn|{`96cv@~zBmrE|D>>|<{s;K?Fd2bpArL-aHrabt9Ay`&=QUv0}xgiOi$loh1;LjncNCS)5lzw< zU%b3Q2&#D7?8fRIHTK59jY!l+`<1Qe>R6HLUXZ%dpSYUSwDS3}RXjQUbGuVgvge*~ z58QXY8K{kySczf&f1xS4Y-Hr`Okx~<#*w!Xo^)O9E6u}bx@M;((??@Rh3v5n-P=#P z{HWB9zSRxuNxr5DFGIR(>o4r>0@n%6VJnKj?MWYL23m1O7Jkmo|D0Tt_lI>C@#Tze zF)xT+3Gl1Nm6dxg&HW>b-L)%UImBZfBazs_Pt?28UgQCGUVuy+A9sov$%~n^!o!*g&zdnz^b~CbhLFp%d1N*7TFWJccExJg zUzp0}Oc?7;l5(87I{Y(H7fe#%R?~#fV9}8}3P9&Y3qwmNxSqQ{wzsz{_;(Z@O5E-3D*l)Ky~^{J`}&)-^%a0Ix{;j2nmp24&}H(C5s(@ z@LP&9Uz~@?#3KoF|G50@~<4-dcQIMk|lw-r=#WZHaogYkHwXLNJRY)4W+$Ujs2!@d|k-yffBMA7R&&ukX++o#e|^tv6Mhh ztZzRx;k1=CCx5KEJq4MQF}O8xQWG!}^rvU%LEga9;%VoU>=kM;2_q z1DYZ1;Da{7Cv(y_zhp5MdBWF=UE|GP{Csc+!%*AIZ(f}72ln(QIR>7O6_0wwO4GxE zCA*;{zjWD^%fC=PMs?)6KeZ!$F+KX(iAUYe=q<_^{PVE#zt$L*Fl75RM&C8N=lK5= zQF5hKBe2I04YqBdcWGQ5`A1FzsL%d-JRW~gBjXHsd&!laZ33`Q%zch9N>=3`0=pT6 zwTthdoY=^SxQdjdY_Tf*YDTCwfL5z!VdNo9H(PCyH?h?tgxS|$G@*ydy<9t{d2s4i_9yH+k-X^pjikO@*^6iD$gg=2DtepcuN}qNw9MXf9cF z1Fk`I0tRf3!kk%~9JON13FW_&q|5kB7?oeQVrpKk7%gUSq<9``MB-jz4~6J`KOQb% zO&}4Np!eNpEdSj)aUk`(TLb``Z_!7ebMRQ0Cp=b19=La7sCT+}&gnrqGs}R5^M6}r zoVpJ(Fg|}Z-}$xr{Ys*}sf>}daQOPXG}2;nRbyD>Sp&0Xc<AiCbtWKknd29gT`Op57vHM4M(Ui1PzcK!-QN&C*O1)@lv z#H!3U2o0=6vAreLg~%bMR5@n&eCP`C!84;$EOY+f0C9*fD5NyFfKMw%T%-mOXN7h` z=Q$TVWE|#P%lnQ-8Uj&F{{TGBLh8>@EZ_?ybodRC-r@j@6a&|@%DWLHIx`uT37oG;J~0a^Lz-0oZZzz&S;}eV zyFb1gjyi91>D?WAzv~X|bE!TGv7#2GTS?#DGqM)xA!p(tD@8vPDCaT`Q)kaAO^7ql+pHPh;lN`zx{We>|^-a zN(5_N@~bND>p-M^hdzBPXN z*^@Y&G>-C-KW|ja6;U+l_+Ii(=HlSjD6HHSN`*7+K+TaK9Z7}`GCVa5aH)ioLEfK# zdg-+s*y?n*XVbT779vbvXsZ}-UGgb7OkKA+8FZr1?gf;8m>H$+h7H%pAmdUK!m5$b z+h5X+%gz^VJoXFnjxN_!c+4nX{9{9P-eAa^dCB^6oM%>b)EFFfA*$mAftyv6r z#RK)O#k{^xLd;_03AME+K7tI0l*pIUu__2Xm<31fPLUH!EZ^T|_rorZGQFTsBkyn!#e98vrBU?W>K+9q>Z4t}!5;g7Fw%_ri=?X^A`EY&T z=Pdy;{1Jvl&1|Xa-1|%Zo{A*uvIX;iwLcdF_aw%}cO4TQo6_&e>5SqNkPVReh``?0 zv@wRaJ&|2zP}enaZ;;LALZ}aC8dGcNJ)-0xvAPbx_~;qL$81%8@3}m=jgIYzw*LL= z_j}(Vy`v1*lAOl{*ds#c%{oHL54xA#DjH&0mY^!HAK za-5u^(Z}Ewjdv)TisC{~qg(=%jPlD3K1@Ju`LifOu_6d%Lvsc%tb9M89Y`P0AISyC+x}_?{#2L@ z`YIEO@!#u=CD@m#n8q|UHWqR1xl;@8owX3g)jq*2!gbz-PLJ}F-{@#e)OW5-W0wR2 z@GTf!Ofw<=R^e)SDxG=vsBz5*;p!SCtwXzm@kNiIG^j&qET{7tM|d#aQU4R-53-m( z;zB@Z0JE6tYZSp09(=?#qPg-oUp0>A5FKRR?!&1K=p~WbCkd!>I&GLeqjSrr@dA@F zZpzN=jpTVgU`&C>b;G)$O*Ee>RFi+J!-pGB68wF$^*-QXWC_TTxBtZ|EDo~F$I_i~ zZUdXgwtGM}`YGrvnNOF!$GAbok}SHTKQSE6BQj8M)Q>S3c=n@|e!5>xc^os@JZ-~K zu&|C=7=0Cc^_#b1PE>Ptt1_X~$=7j!Pq6y@zBtBUGA5`7{O(xDG*e`HwR%1U8y-Q8 z!iYko^q0zVrH_<+Cn%1CSV4{Undwc>FIqI)hA#_DJcCy5ReNC9h)rb=8@-hI4Tc15 zK|pEo7Vm7qt+?D0_7PftzhzP?ZUOC{xXPs^bNT6$UB(gdf5Cp+_^wkH{kJ=y zeNaQ%)YR?rd+!l%OrvL+tU};cW(JJ#ueZpbN40(YIlKnOymWc+;kLcjIuDhzESsEU z=NsojA0_|4xs%fViuDcTpP`-j<|g@iBAY zt4`Ym4XInSMR#sI+uzw6!{N*sU)RgS3R>R^zM=4qR&9jE%)~6<_q7OSw!x;8#?d9d z&lr@p80kDGq>~(lCbR*~a`yQ|A^U6Umfta zXB{Q%pjIN&1;M>31$*!@6B$_^fSAcQH_iO9_oXTelJTAo(zh3T_=N=Enf0x!(v!jC9cqr zIrfROe4nDpK0hOJV(Q?%@b!N2IZ&>wQC18zLpY1)IPyY|SVE_)jrVgYMK;0V%W3Hixys zRCGb9EF~Z%|RX9zD&4^n!?4=3|k__SI z40_+E@Y|9-vW;MT5TJ5F*k5dm7u(Cz5!zZ}*0ZFL>|XBhIBfVSC2$~h%l?Xy5zeTV zp7Y`%$6DRw5RcmQ*iFCjpUwyM z8B{sXH*f~)g5vd0iu-qZJW!#exKMv}xKi%~D4W{fx;XB-V%yBz9LvljY_Z97mYEAX zfFJO+sbYG98SH-@0|ItBHZJ}n=5^p=2VQYV6Qhs_X=omHHs=W3+Rh>n@BhO?;)CSr zxo*Pb#21Ih&sf}zsE_t<{!%S-H@Yb87gQ%R&hwUW4(g_E%)i;>*K3c$cyn96@$%PU) zsboiRTAT^BScGA{O@sE{(?j{=sM$xF8XGbYDfi7b#ppj&R>0OQM?Dg~B~H(m1B+Yq3C9MZaV^- zKs z`k#7Gh5r-8bewk4gQJ@6`;T48`hK{8bgQ@|uN17rpZ=<&aB=%d(siW>N#8G1gmr*S zE-m4zsdNz96!j7o(~q$n>Uj%$yk69!LQgmGy207DW$kwjb{7?`s1}tT6d$kG)xT#&)N^whww(a zX8dm~dhkx)KB~cd&;u?tDCzRA^ybK+=ZAkpefToX+rO>a<<8*Hbx~G2ej$m|v{1~u z1X9Lc7(~e3$V-B~1feh5p_*;`k+w_i>V>hkm@CbSEem|X+-CXo$DL;UC}055gAOZL zX4hcoWXl;@5`SPpCSpK1>_ut1ns?&k0#DJHMG461YM^ z^Kk9w+M9Zqvn5sN0{+^nv%8U%?0d|`tC$}-nqgV8d-{LMK?plmtD4Ac(k;&xEWW!g7MR@vBnNgt&nb{Qy=7N3%J)v zvaKPktbb%Y@7VmE(~?RQ$`s&syF7}%vdF!g=S_5$!q+yGq(nA|lIE0(&i^YUAiD&p4qwJ)%UBJ&q0*o}NSc#?@Mb);z z!MS^JQ+PWZa`z*0_kQf|EvN=iOsPlp3~T7!Gc<<^s+j`#HiBmG*H)6E4Y|@JF^6R= z2px9`qoX3Mf$a}39F53D917B^SGa6#JRB$75Y80JSgd*A4op*R+sfL9mRkF1~8 zHgtPXc7H6u{qj?BOq^d4r4J=0HryFsuc90OM5DEhr;|&(F1>jp>P{>EIT%)PS6{*f zhGbM*0Pd@2d5hDEo^a+3{uvAY^&&`d*IV+NTCyG1C}dYwDvoSyr4QgC0dLUJpqqah zj6jpwtW=*VzwZ=~0(WEkCo+by54gwmp-qkyj?s=jXvkd>9EoL?A(9a)1CKgQna5u( zV8;!Oy&my5)(cKerW^(Cl?Q!Zz^~#4VXaNnxKJa^1hTM!ptyX;UJQKoZjD-y_fs8U z`b3kjT|-t6$me(p%25(`KPA-7Uwn|UrUFBQ44_Dn9(7bA8b%Vzt1##T3M9zS;yb1F zU*!53{DS=fC|*_2a=u9VMgD*>>H`Xi)>Me{swE_{+IdGmq@JV)Kc11ETmx$en-0j` z0racto1F_1#$keCRx~lky@M^o$<5jdM#~T$KC)1?2iy@f#Ng96=gBi|)N4G16@>+6@zxL5R-T!3 z*PkZc`Ra%nMA`gYa;uE;CdCb3pR9UkPbMEwD2Hs1U8vAn8^L&j_Y^$FU6-)8HF#>5 zloTao%TM+LwW;SqWSau6tqs{3J*A}<*vDmM!_X0$55lOAb{{NdU%Ta5Go5US~j67R~seH3J{Qfe~*Fi}fJyX#FesHvTK@lo(VKT{$rV+6G z6L9{qepB)rY`FH_CT<=60b~eFB~Yu#7{uOLfIP-2kG0HftUSA~A?2D_3x^b;12ny9 zIchN{*C(yWJ=ix8j!g9L@lq~3D~rG-FGUNKjTZgv%b7^BRcm3xO!nEuzkiD=7ALEL zqs%*<(L%G>#H*|V5fL|#|GFK>74&EJQP*%4W+3z3P);bJZ*zV3jk$X>iu;aWb4^{f zk8+!kgn3j%Wh17N7-_D&(+7|~);n`aW<5W1Nb1mW``pBl#d+N3mNUlDJ7fAgY475V z?Gz*o`ZxdWN>mFs*(dK3lzhPOGm_OZvl_)Cj|#)YO<;2`7_E(&71Fse=*IJywO5Q@ z?lOtH)&e+qa00V{#u2Z$284G6PtOy?Cqm0Vahh-n9lf9{E3<{kpEKe>p>DTw5I@wn zo{$I~T=D;a;!;_3TreO3@7r>!IrqNtQ1e#2BiY=X#$h8Z5%rl0##BrApgW5%;qZRB z^6x~gEJvcpB>1&1;q((1OH=OKZjPINGf<-_YhG^6?M3oXZIMvJ69x1Bk2pjNrXt4L zwB|5{ec=IbZx&+aHJt3)L(fAt5==!@2TcY)J0lA%hB${j<9dtj(E0!z-2Vn}+~Eyc zLXpoLMl;-;Yb;Y~D>@1J64 zq+Nvt2hdc(AhPL(Wwb~E_UeLX^xfHP`oQ`0V3K}n4Q73y3)ZjZSG4kP3ivFc>ER`< zi-{||ICZ%9`N`kyctD$EbYdd-4Uv*bOmQ=@A8#O#kR_~3@E73t0RwvH zW8phIq;8ex5Bks3B`gZ)TQJ9)AAwsks(U(wpXjLNj@euvF62?KbAMS(bLCi?y|ajNHia8`EL%Vx!Sy^Gd+!;uTfmC1`RB;3NVoKNN&2#$Q3{W7c1;Y|wiA5<; z+_Ey(!h1iVV6^GI!-MlNrrLxdQ}R8#tLQ}HKK@|C7#r0-Dbn|>v3d-LY6Tiej7O1> zd$bTDP0%v}ksi11Y{8rrH^h>|2W~qX23ch3W+AtirJ32SG8hq1le#3uQu!nX+reo4 zB@eHYNBO}lOxK}x`#XY#j}+5|IY%=G>7h-0f75>oyQz@6?WCn@dd%uQhzZrRMVFSK z-eY{I$lhb}*Bb)dwTTm7gAF0jLNMao&U#PPdVG;$_rf@_nDmZBKtUT-jKtUzMJG$j z)y*QQwa)+-56QOQG{g$7YX1LM`u1?4AlK|~xpR*Ps8cYZb>@h(>31bCt9ONx$5{_0 zFZFyEQ(12pxZg3f6d@#IEbM3GkCb?=&!~R`@`&)lPmF#t~Y zqJV<08UQK>+}~Ee;rg1Ru6gY~3?L6(@<0d^d(h%_w;I=81M=&bwNS@ayb{F|uUgE9 zMAK-Dh8^fniDbMBL25;Z<=*1fhX;dFPiO95L=>T3RBp635X202mEQy_{c-khWGnM4 z0rx$?0$%|HwXlSMW;}tPfKl*ERUhxh&UeSw*Znoa0fwfwZ=H5#e7#qc|r=O4{R*SVXX z%!~q+&mLcc6HF2-BWKHJtby9%fNDy@f4O7qH$*{wiUa2KR8~g0AGzPqF7c*B6l_t| zV)e*yNIb{aF#RhwC&>{jahg-|+BR!5v{?}8n=SD=Y8$xdevCB1!pjJ}3a@lWG9qA2 zPT7yXos5=PKA2XFr`Js&QqmHgvgjE+9zOxBkEPo0=~T&*%{F6XMj&vZSDXc65SpI~ zQhELi>3*228-hB1iGg^(>AbK{qA!he*kJ!$F*KR1q zXAGfQ_<#dx_0m$t;|NxFzIz54uI4DRY^8-SbBzrbaV5d3f1bC6VMX1?8%=UP?kGxZ ze*&&+U?rR+iIwKkpZ=Y&GyqKIivC-VU?TxZaH(Uk7=b6C7bXUi3e%%`iWHgTy`QZP z%wX|v>>>^ddv38gUQ|Z!E;z!4wvjlQ3PEZVSBD#$88<6rsmwDrOiqua^&khNNcMDX z|2RXWL%2=mw+=rScw1Z>ZyuM^aZGfmq1(ZHX~$H4zI5A+_cHUJ-o~yS?>GM`5@{gPA>V(B4Uur-nznqQSS9;Dn$1u_rxkkCE%nX z=u&T4eK+hYD_81x#VevvsrKpqV+p#6P)s9{(a=soXAoF(xa%r~&rX~f?wn!Iv~(&RBAdn(=eMtzIUy`Q+~!3&1H_>wzx2lhJc3hBr^80`~b$;okeV zf-q33uNh(K7O(%@_|KEEeN-s%S{Qq1@_#`G>^kOSWM#1ZzN`#CsN(1}j+$FeK+NI> z1`FxpwKK5;KPNg*hI>t~tlXK~md;hmx>;f-8)k@vnhXNPv?cbfP#ht{(i6_EU$=mb zF{7$$AT_y1a>uNyUrl|;s0!);;&6d=eVu_%fT z5e_oSBxL)1zxsRn=&&2_2}W^_;K{PDnoL;7^Y_0#VQD0!D< zjR{8#9I+P=+#=dWjLAZVtcD*oh091lkRn!0O_(7iKhHxQ1**R@_eCgMOm#7N$cC{J zhjnt(n@{HsBdhbMc>O%3AWRixfVlHJy9HS>q%DTIJ3Nvk)X`vs*5T&u(bmi$KV|+=^$IK>281yKqWE((J|XVW*0lFwf4{FRN=SJIq-~;z5adKLPBTGMda| z+4<;ya@|fRi(}xLYP6u3dpjGJIeA*@n#S^L4fodGU=ITbm*8}0G$2fj;uW zv*=oG=IP(l%{j6-!(VkF>H&?IB7l`_=$1jES*`os1+e zp3{dlVpeDA|8svu;`tc2c4xL5!o|m9t55#q*&D7;unBA4ePMelObdUSbW=_0*bq?o zeP=RIL>Kw*1q+2wr_{{Jh`nv>Y3D;EG^YYKCy)_c8_)XzE7E@-+>c#z1Ssm>#-GPe z{nWe6eU&+T);mFvaUL;(>QO!D1Bgl%{D1HCXRUcp-(AOfZ)2_I>+l1O^$JupVuLh! z$BQxnc1$-QRBQxmc%MT}bvab44eD#;0lvQuP9K zLdR!;gH~G07`idEfPa!q^6MRQ+4TdpCD|9#R$IrFg&wCW+4cW#hf%8iQi@y+#offR zP9Vf7IL^hqy3{Ny$Sgi8*6bdPVamFq_nCCQo>rN&hSc1Uz=lZ60eNJZ?cj1W+!@;@1u`U=tfyzvD2Lns}c* zX0%Q<(&|C?S|kciW!|Z(FXjr$q2yfBG5$z0Qm0(=Is6+9<9!i&xNt@6qr(%m%gcY_ z2FM?r98+*hEQrTKbTN*=4>aP)9$dlR*CP{XKD_mUU$#N9YrMr*qH*dgE)lx-V^L7j zyi%_g{pagzZX368J$Irn5|ye~Q4TEY7Xz&;xLvhWH!j=J%zh?R zDFnSNJTY%o>{%nh0uE;|Yk^5g7p1pK#g*Y?__ix$y6+QR&Dc<6WJl4~%KOZrqJ7s2 zhJivExhTlC()|_^@~f|xf7ksDmXCu5wWYYwQPrJnWwRqYYnq1Per(Ee+oJ#2TOjkKX;abUqA>Cp%WaE($aqSm7J4gV6PqSI3LrX3bb` zkip5;DoR7hCYBI))&J(s;{!ebCv$qd{@y_AgP7SsghP{KbN+p3#P6F_KPCZ^tFJGv z94st3Q8e4j0E2^y!)awULUNLEk^`K>N9xta@dqNjpE)Vl&q=q*{91FrOk$yB9&pD{ z)LVBHo}V-{B(Bd@x{PHY7E)mS;gsC{FQwm?NkzSn@d;r>L+BbFQFt^~S5mv(_O7*y zNYi3OZx?GkWp%<|$E@F5^u&;cCWCLZ*FIpb)i}eX&4f-qg@(Bsj8N*#lRXSYyiZpz z&?*7=AZI45Cw!9V$;?oV+F?Kv8)2C7*_h+2SaR3$my)YXQ>XSPja#;A&2o67Uppu?p${?4RYixZ6N%oVq~O|h=)UDt_g6F zgz6z1{v;jlOx7kk+j;%`;(vAe5jQ(Dk9G7l*;QQ|0Q@2|a{?upWU`&x=TXbXB0V^i ze1^pMbjYthuwML|KY}lrv$infBR0^`$M%sKGuVU$Ma#@ltPp+W3)de05L-9 zO>RK-z4!a682wS2+9}>mp7!x>5IlP)j(T)5h)c2)7rBY6irW3&+g46(e_j2o#{=#W z_Qe`SGLL4_h00(8q0bL(l=d_wKnwd5)a? z*+3gA+Ys6N1j6*ICs&#+9!Wajt1^gWzhlzJuLh>v1YQpb;9GUVil+#y>lPmk>YygXOFgF zdap#$0$W24!H61u-9cG+ht${8;OD7BunCU7dwpT7!CCN6T`*?*@9{f?&$-^V=)t@p z$LqN7>pI*wxX?s5xcdy7D^+E|Drf%AkEDpyC#O{4oHHmo%dyz;ur9O81zgqFGNgpE zeMZQ$BFV^EDLQz8?eBU;M;{1aFYcR1OS=b7S ztNW7>am#^Nbzj%Oa-ZYJBz$beB!5|8->c-14oy_;)Z%H8ak8N}?F>W?>(Xnr zK&*>$YK`HFp?Jx>C>JBUNTwVF8OMLXN<{_DV*m97Ou<#$m0G<^xVevl6Y;nuJ^_sj z@A;2FIGhUUJ4T%>E&nkae~NirGu9f1bzAchuEae?7S({z2mg5lm51d8UP+i@ywytN zLo*)S-Yz#MgUi zHOStdR2&GBG4^3B!8zw5(1U-0p3nFbl|B;O0`SP6Blkc>B5r6>n-~4!w7#Rm1%$k~ z>n&puplcC-)`-!=j1l@Hml5VyHSpbCQk7&}gDyY54wD59LvRa5O*8*R(Zp1X=Su$& z1K+;Wby5B9F6Kh0u@Dm&qJTU_rmzf}W&c{a74z`j1qogCJ$9AI*rg?^9-_f~jNt@O zO?O+00FWOM+uqI(nmKm{tc@go3~aJhLXq-#2#)E_etLIl*!0vm|v_$a$OE}15UoAH1gp=0 zk8|-%4WYPrHBJG`Z}|bcmd~XHfeufh+!GrNEv*=;*X9}tZ(;OQbpdOdoL$Ox{o?oP zIGxc^e6_qNX90I0I|K{;*B=}JJ&K> zvrg}quBcsIj8D+8@}dV{xkbWaTnR05dr6H`i8rX3yh$^jUeZVViA^FMB?UP{pwH3z-zkbUP7&4&M_9XMkyHGz->X zM6lGHaao6UsW%z1a;&BwQH~EVLiT$9_)ahRB)7@^P*n+XPy{laKIAoLnyl9`ZmEel zbOX!q{E~=MqhXZ$_#;mV77Xc)Moi9q_LvO4D5H6-NG1^^gYF}uHeF{niM3X^H(sbVR-+GpWO4zD5j#EWW0?R>`Mn;z{mp6@XKV=ipdC5&GPv|suLE&v3hP_{_6&PLaSoBDI!XZhj2`tjNbdJ0)emO|o4`dpl;>L#6 z5M?+8@a6L8{`xy(T;6RP9W0G>=T&qYBu5_t%`=%ce%mqXI2It*ffGGQT?GoRBUtK^ z5lYm#V!3n25)RNTU}#FTk(ZTo2o|&9Z&A zqX)qW6+K})W>TKP{_q}@9GvdSdx|SYn@7rb$;fVRjVp-rM}3jdxVuWR{J739EWdwa zShd~D+F>n0Swaio-tGa8j5mOtLsxs;Hd`-+ey(E-hd;3=2eovbC-w7J@yCW?V&5zjpz=qtuY;S+e&bLq!uHI@pc>{aeNac zFF;R2mXeru%V?M%W2tvXQ1Hg}EDd~=v5t8%n@QFOYHk!W1_y69;S&*zh5I<~pKh&7 z`v<-C&S4zWciyX^Dl%MF*;??Kl!Z3*_<)&z*f+@+x#+tIJ5L5wbAzwOS9|_Bb@K1$ zpC<{(tL6K>U}ni>TqRuq?s(#j+wVFMN0DaO8$EVC4Bn_i?q?A`sH{~266I~-d#fHZ z{}`hKU6Wc?hXQ}umBY8UY`=f*oq$M`{w7eHgd@ZaL~hcGv(!6w>qb3e4J;7q7JJPn zsag|CEcG~WSB2*16px74gd9n2+AZ$29yMblW%dI2dYkf z_?kByt-?Du9ECzPC1UF#E&}dwy9PHh7WM5d0CZ3Ed?uz8fG7g%EFC$=Xcez~3fjsEnuX#T!KS+(00-ev%=3LnH(BV* zl`Pq}lE@;iR5lrB{6kkQuB}2_II6dePdgyg81s+MhW31$^h%zjaE~piF=>v=o%_h0 zxGn#gQ{d5oFml6`{$=78;KxVLgIs9!>74;Sx(dG`ZgwaiI3(DxK}r~)p#|uSApz(& zWvKHKo0<%|EoARs?GD9ERHpl9kK{~6MWTVYWlp}D9{j?)JnXu3u?7b)z2gD@{B;mm zj?=;LlKYAK4bs10By$*TB={Y)*IOY{E~M2mtdroV_CY=_5`;`R>Jydrz)H(Yq$XB) zU8Da)1iUE!_g*_)V5|Yp-i*SeH4pJy?+|Cu-Ef%DUV*&`b3Yb;d?+{hxw4wk-v^pC zgJ;No=CO;EY#^A>n8&(-6TEv$sz z=`Ugwko+l2L22@&06a>e!O??5O(rFrV0D5SOC13obDBjMQgT*-6dQmufOow?7C#j$ zA(pr7`~Mz1i|IK&z9lE9^N1)!WCydc;8Vj|DBDPNJ;9&b=+LygYz>R%K?!`yDSTT_ zE7u3qa+a9)->S9C#^(t3xEond0H4qic!pnAQowVKnnqOb14Wgy8LEfDhmr2y*VeR+ zYY4uss#>A8sDcKJ4yrD6O+-=B3b>v0foSv;?G7?ld%QSGRdsXuSS4EB{wN z!OlnSM&l^N^j#vrYckHR7;zLq{~-_=G@FA%GLgmRj@jl3`n|id35b^7N@R4ef-QZW zq=HU_TMF3uBFSLWY(_P%aIJ8%mJeSC$g}QZ&SJkOEXYOrht+F)m03nK5VF~3Q0W+v zIMd^X8q6Tx=Zr7eF9#QhRIc;c7TpaM=Ui4k9ZhpX&SUq;JS0-rudw`J(;9YIJ2T8P z7gn_3HM)7iTzpEDltZXl$eo| zytfnFKY(8XoNz`n*bFGZNABRcHzlu*pi_sxx1k6|2A!^E|9@aH43#Psqv9YAD1p$X zK2f@kfB*dre4i50a%`<{<cB``!&7@Hj-&*tn)^xP3{Zi3ZGdn16KBNRTF9f+rk~Ms#MLqB9wL$E(^?eY(EP zp`_JYgPD{cdKh6O%AxjGQ3tq&$le8@0B0ac#Lz95Q9S;Pa#qyqC0_Tz8H|Vp`RFG$ zJ0Ssmqd63FUk%3be;i$hKh*yp59i}>m&3_%#u>?W))`qJNmfW!GR~36*+N#ik3EVc zlDJSbi0qL%BPt;kXJl4JDwUOy-{<@L2k!B?&-?R!zhAHCda-MI2^;{=NU|Whwt-Pz z;F}A3#rBkFD`R`^!O7b@9kN|V3Im}QY#84*%<>iAY+F)vyH`MjSwLN<39m$kjVp?> zBHzT2`~t|yF-si!!>Se8iP~zqPXj0sKH>Em&Jd%Z28?TG1lS&d^x^qa+JwbjZ-HZH z>}-`&YQ+Kz(Jx&Bq2;W>1XMSkl-f<;>V8RLqL7jUK@2^xD_&^tpJ&ATt~;82`JMN( z)F@9MCcvz_xXi)pC@v0EF4%Z$%ZC%DMns0lwi?{=wL3{M)eVm;)Q?7Zesg>uK>T!= z$9}#J>#N`Y6-E+RX)nkRUjh>o@e(LLwgg6LJqRB^%+t93^E$wJ8Tqo?Q*rT>mOPj)4-6AI%{NyFMc!$n<-tyriA2<@Fs;D;012p#t6)of18eZ}d+jDzcJ*yxRs zSbSzxD!R~mq?DsA74D#q;i(4^ybG@wv?{HxFn0D3PS%HC{jBm|e$vLV>W{M|W>JT1 z(2h-5tsCHTi+)pTk}(klWpn!<6Auu%^yOw`BvtIM^~nt?4Q=sOHhqu$^t?imWQNDaq5k4-<;7GJHG&+|!)MhxT-Vqo5mFyQmp+rBnA0DHx zTk~jFvU%RVcSkYoHoyM5IT-)aE#Qg>Q+r`F#l{$)8HU&3R7}mmW0ifcf(7J1#3+^m z4sq&5*8_iYr9U?8)p)3ZPx#Sf~)9@X9YmD4z>)Cs(4 zXfsRS8(TiGOzjZng7UH^4qgi=(bm@9k#;bn5i6;yq+na|C#?abpJvEVuK40Ah_v_F$Py&k+(@qA z2~^=kxl95vBG(fj&v(ZrV?H;^??+E^z%i2MrvA{BHwT?e{=5KF^b$GgFx?R-99+Smu`~l~R#R+#8;gXO5Vno8H%(#l%NvV_crDRI+!Owd% zBf_=12Ftnot%Q+oHJ59h8MnAB&^K}`*mpW@2-PZ>(URwBmd~Y=(T=w(mhPf6rvzI- zgqayuLpH}YJiab$LF-QFKZBe~b5d$K{a=*ZQKf+u?+nVeu#23vD*i?W#a(h~aB~Oq z87ESV8+0^K)QjAj`LNb#ry0!_Fr@Tv1H*n&+l(o-@h&%&IsdOlM(7!u@5<7KnR8p% zkLTV{vL;1Dk5$Nifyka69Kd}N<4?J9!cj&!*Pn8bvE5ueMxPD$yZGuAr>QOyAI|DO z7tA%Bi=ddwXY0C2%V8k zKz|J5?Towzg{o=E2XLczgLu zZ6sIp(FGSWR69bhxr?SqprqybQA&JG(h8~C9tG3sFIGce8eYnH+v6k@VNqsd8~0hb zFMwD?s{vQ!4)WN6o=`TpNT9ApKo%j2j?rIkJ6->+alfK?YW#+N&!OvZ6=fw|0B{MR zTyRI0Lm@vV9j|jnZi5x0cvAq=E8${<2JAWNBoyL-*nFzb+pIX&p~C z18P*cSxkztnPlkOnJyG{RR-#&p9#cZ;bruLYC8ht9!&vnY<@=HYZGc=RENtVa`!!yYJ#L0V>Hf1KYqk$?&JEy7 z(R(H#ZuM2l?G6{~qP71%$X_AdHDEKHzhcp~M)M5V&8{%6l4>NDt!!>|)%3`V7s&Hj zMu>apLZ!4cS~AJ3e_mYxi#V#=jGA(;lO?@EyEyzI|JokPh&z_6qA~_gT&N1hSRltI zfu*m!gW5?s<&#z^;MoF$PkFf{vq+~g^nT>+^rt8iHP@EHhTEjeMZzm&K${qy-bhzLTL)GjJly74^;kVBjz zoN1Xa_$ND1^N01j!O?uv`tvG@PV>q&3Nw8y1`n4>2s^7dpP7;6`ND& z{)m(NWNk0TyySFJ4)2Nd5?@+ z(T~upv@04|_;g&AW#E0gEm!pA(udcF9O}XbULS$?lpXVt4?D};J`F9riI(4(<&FfG z^Efj{S_oXySOsNBP?qT#%4#rlHdT_VM|Wdsp>OD|ehuh|AuVprIGDD8P6$tEh;cCe z?9oKj)a>L{t?~Yhi@65)+H5J9mIy2{cQH0adsD}c|Zn_foi+`?|mn?lb z!Y=ppSH}T-{X>MkqW3=Q{&D;VHCsbBi~~hTsh_*l$oPQkFU0I6S^jx8DY`87#4ULw zm-0uzoFfmFJVq9v>7~-N-m`N}MU_Deya1Au=35fz3*BU$^?x3>${}E;>k)h5>18=m zfu&|L{mx@boo6WK+ide&qAcEL++U%`O-;*r;0q4mm?{}Ns`qU3#m>%e{O=g9Fz=u!Fr`vSQKGI2rxNTj)3&mtPnweX-7;rD3?=~5IKy}W2<(!f z#e50YR%Ip&Qc^Q2MpKI!Z~;=K4gP$-|L=A#er4*Jf3KZ<&ysQ(JUsIx72`i=-x-r} zy!Jd?6nqO9!Z#l{7+AzKAdWjdu(!zLscka(Xhyp6?~JUH$Ylcz^uVCW&K2#zc~g^8 z&pG^lXZZ+w7~7>nbDT|$zLYidG10h$Gm$#n`FdieH%RNEO-NJ-Vyz6HUv2QTu>oV! z)L)qAf%B-8?Q^fp>T?zk7)9Ekgkxr+YliYbRLRH$z0`w_j@Z&g3bp4_vpfCo9EyYP zwlHElFP(X=gNuE|nE4toHfkNa9p3J%l}u*!_d#>ruo2vGVVoJ$bX8Y=(F$UmP6^ERcULP`M$LzvM%;X|R z`TT}-w}G0=O!|fEv&VUx>}bE#({Cy@fgAbld(2PbO)r7jE7Vde-#0U3N?~B%%19BTxA2};DWg>GhxHe2Z}U(gZ{cv z9=f)^Ic*pm5KNYPU!iJkxt~5ic$erRaK!FFsWbK%a5|k9e~-yyluaEfo0(zeLoquC zf4+%~w9yv09xDon3b<}9Z1vr|9HEH#0bAG|e)E)&X(rcFVh=qWU^oSQmVBBPt9)p% z`$B;2Tc#6G>DX<>UKZ?AjX*o9nV$_;l=1^neXpZg^ zyDxpsGdbL9jM`7~F6w=Fh)bfN5dy3YEsTS5P#-GYLY3PG`lX-dTtwXB@LaX|*u{6z zMm1vK7TiJe1`zpAOw(V`%MuFUD%n{*s78Se$p=`r^}=&uyf?B>OJDkD>tUcm)NTll zon_X3KYL9j^?2;c~S`u4s*fKW7DxU}_LFc$l~$oat}dDn}BrUV-* zWV>479`w;U^OYZEXW7%hPJ#&r^SObqeGO+KIkYch-Zv$|f*9r|nZ-fTT*muk$PE2( zk|5tBhIpsxJEg@uBZK7w_N7s3uQL8CFE82Ij?-^KW?Xg%r}PQoFMyvvXHp4XB=+*m z&@8mGd8(@U=o87?PkLs4B|X0;ia+D5Ju-oVl()BL5Hxxw>Cwm+zGur)RNG%Ra`aZW z%dTkB;@*$>-XDQzAP+GIHPgRM znsQRnfvBftmY>1EyW!jU(dt|@8GawixoBDZ?#$-&zL7_uH@^ODE^Qb%cZK#UTnVvM z-Aizz4jrP}g4vxZ^a<6v7;1FvOhv~pNpY>p(hp~4QLUt{UDfZt>{r1BJDz)qASSl! z>%9jQyS-}%5dOFC#T{9@+pD7G*a`UQPjaDXSEBLll`WPOTVgA!y12P{1n^8;2^>=C z+C={W)rJA|8>xpRW1Ekp$|lAI85l5DjdW=tpGe_=7r_qVjmUAOW zVAWh$aEUzIVcycL@8pnzO?%gf;A3d?0e6Nk;stZt;+KEqH)2$ez?*kk$V2J<^!rxr zjTe=XLaqX0NW6Cz#2ULR=ydDq>B>)9f_{al;%}bNW)hPyFD64xo1}-SW)uEKJ1+hNzMVp~y4!t9sY!uxgQ zsH-1iUkM2DpMXZQpu0?ZkF ziNO}!4>tp9sfqMxp+2&L1Ll1F6E0qRoPFZyK~pcMC+`CY_lG{Sp+jluaa#apJ7ew< z8QN4ws^LEzPw6JFO~T*~|M{D|J^vMR010QaEbO_Gho|ji9 z$@eZFyM>btsA>E2prR4mo{g&)Cfh2es#?Dp9;XM<9&@!7>9|B8nF%&Ab}DUA__bs-jM0e4kwQSL z;+LfbBi;8&zJh=MC7O{cU-~7%-LP*UwA8$LQ`wgz&ukc;7YJs1u2$9Bd{n;vd&VHs zv9gZw_I49G?+T-mRB6ujQt=sjTnv#T)ct#+8(5luJw9`O(|~D(qD*!KLCu(PR&#&u z?jK%nAM%1)%2iFE4AlC=uf?tUE?Rhq=XPofnh&Xu4{yRka3vh2@bLr|NJ869UR`=G zLvpr8I49?zDMj!RGc5-{mv)76AIE%17P|4?xO%`M-s+wX5C(bW!4q+a9`}*;jH%)K zR4|2ckq^>iE%bg-XN0f65ZUjLP}z4L=121C86-(^T>yrNYG3o8YsjR9E8!8R4!gUB z$Pp?%#m{>e{AV--kVrKV3uLrflmK-#{ukn=2kouy%>Xn(G(+M`bJv$#8zB|xyRt|vcLzcK2 z&@DH!1wHP^ZiGhOSscD&HTu;mSV?PB>9dhHG*l3dpxrqr#D$JSpWIcny@t5_1`-2RIr1@ zP#U+&>@zj8gceA~hvHU^5Ee4Qvulp7xs@(vyYO|?7UM!%EMGb0$1_z&EG~C4Oji$u=&Y1 z*oDP8MU%dh(g_!5Ywk$-oHf0%>v=A-nTLc#6`G{PEKxBydtIEGFZbi4694rCe$Z3% zmy>|%bzxoKiHpVsZ(iyEZlc|#+IJpzkvIFVK5JQui%H@61D^dd=k)yFj7cgwFu1G6 zPBE8;b&PcMf|j#&c;XE>0~WnB@a2r8fgR~4a84|&lYqAmx#|uuo}a6jk++1S0(HD? z*j_wh2WI0Hqu|EHweK{;#Wqvm)-n{(-)MkJ${xLAn`Ik zyE#4eNH|6YK9nR7m;6lJ^oCT}gf!~G)}X@zs48p>1`cC@B`+q+RQRFF(ZYw>e_b~R z*LijO%nMGACG<8Z{IWbOH~fM;`gtnt_1b7x$w20f-3~BMM9)HA`?7bu`#8aVNCc9U zTTF7ZIs_^hDw2#6eiogjpOm)AH%GBRj4_>FOGCM#Y31F-r$P zLlZ}0D_U)b9}^zPBy699sVyHrNKdud9&fLp?gwwvdkrw*HyAa59BEeUeN7_P_j?yzF(mRQtyszeFNtcjg!WuS1t#T=Mq0 zFpd!o3!~6b;Q8`2FzwO0#Yy37i4RM~PG92_yqDE`@lmCz?;9Sm(e;RDlDr7REika? z;();){WkxNThET(5gySQDEgJ|WM~jm^=!moYp7Bq6l0bWd63~azd9g6*wZZPE;QwH zz~H)FL9>!hKvQ1Im*Dt@pp^a!c#zTE4XC<(Q)@uGhn=jC5k8-@I8Kmkb7&97W9RE{ z{D*bjLjMk1KJX$H65_#_sEb-iFUi)(4h&RLjTj!Wg03#izm`&X zkpt`vp^)7|(aiA7mHFEaQx`#nyEHm^D|NX`X@b5NWS_3$4*Q_jAZ}AZF-lG>v0^5H zq8f|Y8a3e8d;H$9JEiErR*1Mg|1XjFuV$Zsw`}O{cPjFta2_5W%1>PoKo~cm`4G3z z5#J`rxIbrqo%OD*Bv(Cx=>&mx{1`pg2jz-Brj^f!_c7|kenkf^TinwI)Pt0*rwyCh z&n(N`pQM)@+CAqpJ2582}vN)a=u%4YG31jVUWu4AEtq6Gg^$L<4eb zhnPDLzFun*_JW5yd|zmsy2bG-M&ITkcp8Gt9Q50FdP+aV#e;1iFnG3U>9G#E-5&15F6u!N05Pk5GYSaTNB!O6ZMYSzd@hZk=E*<|)I~x$w z`|141Wzl$7yV5XgSZZCQUdO1P2;aWYkr@Zef!d6bF9V1Q#Ac1X{**^Y`adfq!m+07 zKZ68!`CjoDex4&aBPEcin~hps^m=n3=WS{bwSv%Sxx?GQ^CTBNzMnTqAoagMumP_< z97s_&Pz*x0K>0Nv%&y0GL1`{YtdTw0)=k7yzH&^HW}A@x^-VU~u3&<|xHd-MCBpL2 zr-yBulP!K-T_}$J(D?k))?sc#3e9w}==3=Kzh?!ts>tGYkl!G<%4aTfhYyz-yShF) z&ELYvC;j16k5}CLn{kcd5fR_^XHeYtKPx>t6@yxdY1?0tX#sWQQgM7+v}c@uyR4L? z*{jx{g0gzjd(Y29Ia{-|gXvtH@K-Di8IjM*MMa%2>PX}t|1zI%MRCB3YS_l&BC{69 z$=BfU93W3V>Q%6bks+3p+E4JQrmS4}Gf9uKd^`O`f0gMI6A?aJn;-3!n^P9z5^)_( z$<0hd>$*AS2D{pzJQ^g$Z>Y)=koeg3TpNQH)o$|Ce$oUvm2v0!%I=qZ@qfFAFq!rk z60_-PyS7%|2dk8?Iit}5I$T>PM26Yt*U#7mf1(oYq7M8RoACHyhF@`D65Qt*9cswo zLL7-%ydGQ;SZJU@7LQqUNO$@vOr=7mZc>~H#;RlVsSd_$^TCIqP`$Ja0=P!jQKSw% zwsXZhM+f)nZ+7@!{?p!2HcbmeaInE z)m+Af=SdrSoJ9UJ?%>ohnL|oFuKG>VXPzB2c9;02MC_aa@=OmNZ9gq-+uebRI**?q zkb9{^mHsBf4DW+{u$Va%or2%a07R!&f9T|S~RJF{`|DY$zmp)r5yO6Aoi&^{UB88AvV?sp&{ z)0qY9tDYyq5!;lI0*&)7{4|2hL3c`SL$_0Ib&j`a_jUN&uIW7)yv29!o^z3v}YhF#^DM1Azk5i?mR zYWP7y7VF0xowZ~V5?9%q_^EI%z~4ZSi!)(MPqInnujiO<+18liE)3UQIth^OZj&?`-&JPq?*)NUCMr>oxt^5k#JS*DDsI zdb(kL>|t!O`^AAG^?HT|-&T5XyZtI-JKaqHfVR3SX1=+Zlgw~%U4Uy7t|X(Nq~$1y z8b*uLuE$v^R5A`iU(IJlNy=3o0+G@>z*-uOzS8ou@9F8!iHUQc22mw zHwUCdHEO{0py=lh^zHY)20pr6s_?HaZ=mip!D0U1e-Pzj;s>%09?ae$cwoDLpKGex z6BuYwZbQ|XaYotzkw$wl)Aima-xxn>ccDE_H&31qcv4F9WK z($?}Ft*NaG6=Q_LMZ}(w@fM+rU}CGH$-K@E!17yu?fH95S{)CZfy~a11Sh&QM^h2)UO%u^_+~zSPfOIAb$n!w(y16uSLQ% z=VOloh^Nz{QnS=k%O_`6#HXK)_NdBkVpSX{I7O^9%JE2X@stZv)!89DCo1A5F}0k0 zor`ii^NPfET0lMH{F8@X80VPTxVh2fG5Vu4(BKrX2BGH^JhO4KOXN0()zo9U$#JR2 ztn*2)=s8Rz)Vb4)E{w>!l2F(Jaxn=;xLX8$m07*a2CRn}$yxmA#gj%1U+}SmT;uM7 z?3uU2CIR*E>Kq&J%?q(GPmce0YudBuW*XYU-}kt!9kEco>rf9?9$&s#s(f7gMB|BR=lD_$Bb?%c=yc17Vxrldur%JP6wWKYrBG_qJD}v*?}r~riybG{ zE<8eyAL=yMamk~QP9;weGRm$PY63j^goBLzQ8Fk|exxQWB`Y91GK=m_Woix=U2aZ; zL?Ar{*?iMd-rWNIlPD}nR@N-P;3+#wW_%{j<0?=Fmb3+aYd_x;Blc8iw_PVL0jL#K zJy4i{e)=g%FWs*r%jHmK;v^w~I0nq)P!7aSa&@*sfXC#&f%&ssXI1?kF*+DD2g0gR zZxlHf^_%uC#B#)xNf0eWp#XEn6*zRK?GEhrKK2cvjz@_R#KnpdWwQ_oT(7{a(U;%s zg~pzh9qJy=>CU7T+OOnDXCG$IYBklcO_eySe=0CIs$h(6%Serh?Z4?Ob@wsZRtEO` z$)v8=xCahhTj&reE2+B_)9bDLPwI~RL~Zaf)X3eQ>$Gi>?325AQv(I0Y#B@e`qYJ9 zz+kOvK-(eyGWMR*C|^}A{g$W9=k2@0^I@Qi?K!CD+tVv%SzO;OY8*Vc;Ods2aTqt9+Vr=tzZu5ZGQGTy#J=VyXp#=X#M7p zr<=jK36)H$@!iD3u$*$}q^4m;IkMyc+uy(8B9L4k`6+rtHP!q*3lR3_r(#e{*q660 z-@|M^h&lG-KeKAPpEAO*h`GQF^bLHwd@{p{(`^#)ShEp|uNA;kH9TMTL_2dpyRww( zL^Ylq9Mwf)Z1nl)gOKX38>?m!s0zO#aUnRk;ZHShyOx)P+q$MI5f^DN#(GNS>g#SN zq+t0;h;qiYm%wXlsI}PZ#bYq`^SQEl+{M2)+^+pi`xO`yK`}b;qSVN4s1Hz$GYx>Q zE<6^iXXkTCBc*bxN4GFakCYsp6L^{5H1Pag)6?dszXuf94T7?%feklXyaxm>+F=G~ zB$$o7@X1;JXMPWl`%G$Hik=(QouJR_Mqi{b36YG?7gb3pR_J>lclz(uANvM>qC{TS z`j~aqz0j}WDN%~d3jSxFH%GsRBSp!1V2`op5Xw0~%zy7)&|NANHt|=5rGMuriJf^< zJA=mbdwacSkr9;HR%&xBd=de{m~|nOFfw!j|2X_rOl1fQjSH{w7JcX#k_#1m`gG7| z$K6A7cGI826cmE^_JG0xe7M;C4$r2da@wb;gqZ-Vz-(>Ug@I?1gAOnb1=x1dN1~ab zsqru9lPCIxQi(8!O7_RBR8|fDb`jdcr(3 z1vb2dLZcR>D9yk0z`*P|IdSNcx#?uV_~-N69KG9nUqYWh({OwV7#}$K9(bp7{>T`a zq#}V)tMrhw_8TLY)3O;U(=AK4mS6wA=~~^Y7iHM+aS1gmK3MTR_Lk>R`e8QEn58bO z4m2Kh;KG;F%L$A}4)_~~dR#CldkkYcRqh5Xwp&(8KdZ#UzpYyxmN;`^>E&Nn) zQ9suBg)&5AuAldYDAE_Nqwi;9VI$b3cABLY5msR59f1FLP{>YWUT44Sz!QOM0?7dF z0Q+95v(KBHy7u<(E>!*gu39lu%Bk<_8UOvXY2WBoO{b^Qn7 zEGKvGU~GfTyn`SUH=`t;9yET%Z<`Vo(-`2H!`AG`q5A^J^_xKFmc2zvayyO zK*+J86Vav)l;v_M%ms&ZB@s~2)M?6e1t-4p$h#Nz=nwSYXWm%Wh!Y+snA(NG*=++F z+G!?t@Z}Rx)AZC*oH7y>9W?N)c6Zbk)oe@Ku>E5c)~~W zoya2k8a|&QZMA2Fx#pRJVl(1XohnFvRO1htEKlTxONo3?RrlXu&^6gjDq0=8Dv6${ zaMZnF)_M3BarnxXQ6Q%6z9$sU4r5X7CnHN?OA7Y7K0I#g&ewp(WFOOQpY*c0h6{4+ zHs;6i$?E}d{n>!_fmy=`Q2U*$#KpofvQ9anH2ck^(e>x*x|=_`Y`6sy4_g1**qLto z02_R@5xk$!{|eAmSPl}7GBkAnzq@*TH^Y%$!;8?$+mv2W zjZZ^PR@YD)Uw(CcyTANooV0j9m*AUX4yGKl)w72;$2JceUeUCRU2DMvb@GyXz>ei$ z|H)@2pTh4Av72*PCjEL2n8u6qlbCPAATFfEiNV^4Hgp{*0VRUz5lq4cdMfr$?^TT} zY9acW+F^gHntnXnbmwImvl4PxxpM_3LklIC2{ZExPj6SJ4nEp9#(L-bjUw|I-Z)xf z_>%$j)4GLH!7G^Kl-eL$41BtD5{xS{5+?|{3)D!TyBfYW2QS?|5;m5j5g&NRe$C>p z9~@_5PI9)=v;()3oYIv7p|uYUjHmP&AH_8PiG};^EiFqi(+{eJwVn6&X5H@nnvVQF z-Xq_Wb|>s9Pw2IYA!WYbuww+i%%lFSf3icPF4MZ#S8wG{FZWKxuL#IVuut94(`$#L zEz#AErn2FRtYcTf`9+qs{y|~JM-2k4QsDhDKPX>%f{?Ut*96YeG@Mw_J@wM=x#;_E zYD=na6>Ywa@@w4QvOS#N6XB7A?Y>r%4Ev5M8yT@Lje|uq6K&ID^WP9Fy`T^JPMIY= zXC|Y&@apqAgJ;i7xhVAE6nFoPR!>LhtM13_d+6foqjrLyu+s21@mMt^s!>TRYVZCG zx~VD;+a9HUYSq4zY+{@PHz_d}m^0Ctwy80my<4*qvE2loYFaRi?8A*@Hn@Hrx9dfc z4TZEz-ZwEknFQg5;1qYWYgew+z)J~djWnW%6NTm{>8DNXYKA`@HC)^{xi(-uemYJL zXYue~?}4PZRASOeHF?ba94wUrkv*Lx?wo81L0$L){P}Q9ag4s8G*G4Yy^Oe^znn+I z87XdIcK4ckfBrIz3d}y1&EaAlMTN(Yv`z#KCVV*=0!4FA5EJ#ntnYT9- z$_l7C>j_bdZo1)Pc9W9+efxp`Sv5J7|B^@MFuSMlmX(Xp(WU#C@NBHN2m*ahG(60& z_f@&u81Tu5wD=@NjtuEMAvSzj>S=L$IGB3stQx@0{rqS2ZqxMrA7c&vuCRZhZ|!}b zR3NhhOy3x%!z1cU@m< zd|fVo{@}>+a~BsLOIdqfOqNU<;c>aGk|T@_w2@V9Y=j`WCO?~y4%yC(Qs=@Lp9y`1 zu#7hbhy<|v^R7o*Eb5=T5?Zqsv7mlH?)qSnWipw>jeK~{c7#FA zDSk;RP~jF#MBltWJ=PlVX3e7E>+wH80)ytEB=;fWum9Y%m=kLDg!7CzE5`oBjzUj4 zbVHn4hHg#&WE&A0xApq~tyi247(V72O_)5L#E9#v&_Nt+mF>LQy{#m@FnfBX@FsPr z#@|FL`t$MNHO)1naO{bUxtcVS&A{=qUkGA1Hfq-~m|ha7Yl1d0A~ga8a02^D0qDSg!6h5EiDQuO7aSe{;6`1t=_KdQ#&a@};AAcy$XZVwN2U5iN)=_UUtj``6N*x$sMe)Pfex-T^FFpqeh zc83g6_QTt#s{>9S@hosYPqWhP%(Zjh##Lx+%n$Zx?1~d#i}+aV#TT$ zYxNX_)6E8oED@f!j2?JFYZ4YcU)mvZ2IY!vC*c9%__;jvP5+FK0mllooYTJmmSvmz z5z~FPo}cfA^sM|g*6IQHpbhxZ6$861i52F(-q~B6)aRjPuG9775&?iP0 z8daWy4!Q9HRUfGP%w~P{-;~BdhRylcceV1+bH{g24Cc~y+2-q4;4_7iH)r(@Mm0Hw zm%UM30@4^q1bYTAz|nqy_9&o6V{CusGz7(m+6t@k>xie2wZ0xHFs}KOM@f(Pj*q>3 z2xHHr8xe4+ytLxCzk3Ig?k3$umE)83QgXb=uT`_1V==CvN*qnEBGi zkt=tPxaV-*&@l_S=^+8Px7`HTs(uqPv3<($&xYe-G+WKc(2uA9@9;_Yf=b8LurI?u z?|DJtr=(#92p$0teXeCz=uswgIaPJIWeZp z@~YH}H-`}+t3C@%`VeEi2^86?u4iE437#r8T%mXrG*zlnl-TwlUD|+EZbaLdC1ZBr zF;9l}Ct3AWKsS1A@ixINN~@rfU4)jBZFH&2if4k<=W;?CZ-O}h*H&d2iGf+ld_K^K z)kUA)PWsU$R+@GClm-=ZVu{i3zUXTP0uB`O;dI5-Zg6 zRt*s%d-?%vyAXa`aQAEu9`Tm|*@AVe`!W;fAg5CrFX*2N(H*1VQdjuT6ZUB3Gk!+! zuH-!+ab)%s+Fv^P%WTxa8ui{sPv4*D-#TFvopbv{y=P_IvPdJ>>o#vfLKLsS^$AvS zkq$GBoEmtVxGZQ}^!gIJQB+nCBq+a$KDhh^s7iQM`}eN$hz{HioXn-g-)LKHlO^;e z+bsNmE7!|a3F))a!XteY7sl<$XWB%-s- zIdrI5ul=aoWB+EUlbChh(*otAb?f#Rmfu1VSuX&#wb{;Rt@+kW`ejf0Ar1*wxc+<1 z^O}Sd)o29M{}paI!2H2eaKf(`8=m1Ji~O)M6fN^q28Df7E`NLBIiQkXh>;$I8? z?Qi)Vb?Y872a6Jyl*1VXBX7gmXJ6IKN@n>FU~Ob)0~so696XxP%w>wexSoST{F#~aJ`uX<}u;hkK_U&YtgtUDxWzRJ|F?}8V3+} z6A_HyGm0UrMs>f5_Sx=7W9uC;M;0Fu+!wiCO9{)!*4k|tq6Kb*X9oy$Z#y?KJUyY< zM+74?I9&cSz+1!6bV>&`q}kzWPt;DsPrqnz==N2#F;I7o6g2cuB^?IvR8mz2lDX$F zP<~L%eA)_gV<~^i<=~;78FKAc^=wbf?6De*C+2GfPUVxa^L6y_dMHugt^*#$2c;iZ zO?rTy>(?0!tvjrcpN{enE4{)YFJ;E{TUb@uAsaa?wTqE1Kl_!wWD2HT5uH3vbrfeo z=Lof*jC@3YOxqgXWwyWs#UWW*P|4LdbQGvljSR;iK9kJE{a>Sp6?7LA)$!p{l@BEf zl*5qYQKZZpDJ&nf^A6%}1YmY5w9eIyW$YdO$sy$VC9P_(KQ8Xlzt;0#8;7p2lZO=k zZGYr=9>1^COD>0!Sc%Brv+R(=*_Q$Ikn)4cA1HiDeQsJb-tl>7N}f8&qne?~he z*;^Dh^YEHnEYB>bcLGZ{RW#9M{@0SGjiJUGzSYP6gkO$wBDt?B!`pl-|}5UPhoka(1#`A1hg^RFJ6SZN#N>Z zQ&JzHSy$P9f{y&2yVQ(MN0h({A+#v_!kzyUBVVX%F9+qUh3oTPd6S_;Mt@_IdvsWI zMD!ci9U0KWX%)oL_egWpRi zGqRN!=;GB`KdE_Lgf1S8+z!E)8(kQBlD!2x17Oj#*8LxKeCEc1+187$X9I1exB98X zFOT{7J%Ozk+DdHr{u?YtX>b}v{sLgm&V~x)B1VNY%f?5Ad}|!MKfRHg_`AI7=U(~D zwUW!k{lA-r@fNtu)^sW4SFTe8Eu=Vg*uYg-JbDrf9S~k;^)hnw*YElF$@^4n-Bt9| zzsDNj(4T-+T~vm5u0xFKF);HzE1S-)@H?A-fDm@GSb~G4^VwBa4$Y0emE`j$WLQS! zp)2$?+(@yU8IP+icv56I_cVq#KFxG>GZ=qE!t8)X6X?SCUgdrZ{8MVRj4iVZiPA`T zCCE^<;Agg$gOZb(^F;j0czqgi(eMi6je5|)NuFxGJ0ALek5)fA8Ag{}UiV-6Gq=D3 zlQ39Je+cSzoD`?}#+?+dkH3}+1BRkES6xrrQ^AXKli@coc8syro>0DBQd&mQtTTA_(g?Ky_B9~$I(x-?wq22VrD zd&*~wyr<2*1ITH?L@S~b(Bb?@k}aL>VEiz_!_3$@3Ut-^n7V2Lfgo2I1gp*l9*mxF z3?shpvAz#$);)3huQd_=R9*P6AA(b94PwT8mZ==I|iP8Z_Ru=W?H z5sWGuLD8*uY|3UVeCegX5>9URnTRnN=WB2OEV_9ZGo6~G?}F}LyP;Awte;7RQ6ee4)d~C06h58fI_Q<9aq>U$<$>>79dhaOKhikF^pFhb z4S&em37hwUso~vEP2D{!;(KtKb%`W;g{H`Xa7MH z{Z50=TwKrc{|c2mpEP4i;;b%Pjq2!!nNF&RmpmJB_peYo)FxYC_M1(Y|AGBcAWR|4 zwYtQ+rq)WP?`w4{ZgPCPWp!bDWT3H4ccAH7fm|QIAmH?VPf2zN78+{h@I>zK}0%3Rn`I8s*Ya@NJ0Tnk##rhb_+tyvO}J;|GQ?cigVi zOH)KobOk~;a(f0Ho%KuJ?Q&;eT|L^40aN=lR zvpoD~_yGT;JKqi6kkwCu#5$?$;vTaD@HGDO!UxZd`lJnBuKa`=P}NaEkV*d0^q(O^g$LS;^kzpyj?E1I zNM@|}Z?tkVL~A8C;>QcKmISM-ln2{ki}~vimtzh`&nWVI^gkAZyo*(6|8`-A6@7eRljE^>k#{I#g6 z5xx`IS#z*!M;8|Fzj*{Bx_K>CwB3xc?Eo1i@x9SX}+0&fe*&Zd@wXAafbP0U|NEI9EI&pV>9W9^oMW~vDG5rmUz37Q>arsMFKp|wHs*aH zR=n2o#1YQ=5al|DOmF^L^Iw^Nj!SZN;8b705C@$4(4K#&yNRG>24|Y<211hZUg@0b zILEgE7+!_+p!+1*mwvApSww*a%nj8=Rt#>}Gz(1UdTY;w=TD1%{enI`c})dU<~WD%PI-XlV@pen#>040wCXy$z7X=APDKNQ%cAck$=Tdb zuxrgMwVZH7;!ux{mL4kp&(3B^)Ti(QoxXtJ^MC3}F@`K4xn`U3ZG9>0RZ>2{^B5fn zXA)aVb7g;gyi$2b?ra2~TllBXz|Y^9mjRfQ!D7$XNV2}s`5hUF@lLE248z>!D=?RH z=O#N$Xdb*ybAJJJoshFlyqW%Yzz@N3*Vef87TUsq+4a{b7r2fWD04jS`YCP{nL<~D zifD@1M-(kv$)yp1m#KkM)j}c%tUE&E&LjU1Q-@zKW;nst2RmCKYsD|*?Ro@ACN8+c zP>*itcsc{#-A-NLgLjZ!%ldjl{EU#_a9>YVKaZULt7 z;Ey?d>30e}Yic{;dwEG#C-9k^Z{IV?r7O>AS+gXZg8Wd*(VNl;H9;(%34`2ftdwz$V+8MPhZFW1(*F`5*2Lh> zJ^Mpok>{|c}obGhXqoS{Q;}R|KsSo1EKu?c*Z@>x#MthoN-1* z$#(WQAu^Lh8E20W5sJt?w(K2piYOAHtmv$)B+A}o6rv<6e$V&!pTBU=^SRIa{eHb) zL;W=|-a_s2;hkTjFlOkkg9a_kjc$6UcCRXIO&d9lJO!BydVz8MKbHv5m!kWH4vTrIz!=+gX{8I?zr2m(|=dp1kiV? zq#EU#-khm3qp;e+Zh6D7TBj|kffyf<Y7qo+7@M?x=<{ABC##lRWa=^vuf`+k>JAA78)dL-Zc`{pM7PJ2ih zYADDhjvg{oYN{e~KJfZk>k-$Hc1~!YYX6dRxbUNfvZ{>KIA0**yO(r9mN)CeulZN5 z0rVWKhWk47@FMWGkMznvIMUn~i9j!3oKnrvv`ro9iCVsqz+~DSNb*~(>t8U;eaHuH zbE{vx`10t1EkBuYlMxXAVk`VIQS#tYb*tbAq%3(OEmXy9AweZpmGBGXrTD97rU^~=S^pWM_0dYvxf8;9#_WM>GF z9vY%feuyK-t`gvAy-jfdUOE%{E0c4ksu1#=7=ON7WV#B8qDjp>q4NaybDy4HP%y7E z7Wq0sz^Y9=z2GCg29rrSA1_V{qb2)jG01%!J#DF(6XN61uomVl>wuL&12@0jev)r^ z?QrAW2g(4Tdr2x_mSk137eOgidO&ggBswb&(Ul4aJ?~*(Uv~7vR7c}v+_)2keO6h; z>NzD6Xo&Ms6*{jq&vuq_8FMtJawLAp{NvF0n)vR5BnPPCNoWW-6ORNAZk^?#XW(M_^TY98&JvK^c82ei z0M)0J!(iaMj+RF>GDhIO4W~IjL~BdZX@2gFJ{q2!Q+SP<;rieyB zmfGJ9TsNzsf!{MA(lve-9o=-`Y>InE!(2Gd%u&P)N;B}!{`sY_{*?`yA#Z^obw zBF^|e6T9NO^))j!yXCq~=xV||_1WaLl^ABQ)_$Us^kUOZ_ap@Jb$f?;l53(FS?K$H z{eYj-o`o(f5{0Guw$7Q>-B{M+ zVB0Pk?p`zb;~>OQocCjH6Nl_5M?~y&6rXRy>um+)LAJdgAqR^uL$%n0KMnj9Za-QL zno6Lu_l8=mk2vd{LR(P-iB_42qPi@8zu6dj@NcQbRYX&u+OO)Nu3sOJ@a?uLuwtiD zRo~bwU1)!U_XalxO%MFwl~J;g8VlrUDml4=+Y!LdTro0S*kbE>`_sC)CXKh*KvBKQ z_Fg~gdpBk zie~$)HyrYaydO0dJ~VA7zUgUfL=Zaz1g!uJR}&nSK7Q%@#60=4MM?EfuhT#8qt_`I zixt3$W83&9NJ#R9+Qjp4cIFuwN4;5HZIPTbe-JCf9(fDYJvcK*dRnjcc9*(iIQ)Cl zB=;!ARLj@5OnGb^xB}LV1*F-Xu;6xv?g15bnf@VEG;&eR~(Qa*~QBHq3F z&>C@B01j=@9-WWhes$#gwerkHhu2yU&Dg0f!z;xq7gD-BK3{PI_mIs`(%?}fHOXXd z=a{;4jruyK)wCd1?n+>|K}i(#XeT@IYp3bT^hiVE(XR^@s;O?wlG&aG(pEgx2?| zxYc>9&AqZ;?`|b*uH;>H<$k z7qmumX%jl1aUa2FGqo2O7I63O{>xW(d*YfYrS9#dI+Z40QZ+kpF`}|Pfto}R6Lg-% zuaTgrsK2&nlr_!ZQQ4+^P|wssP3REeii>Qf+D&jG9!`1%r9GMIG2#|*196d39vN<$eYf(lqmaS?jYCVd_Alt~g(Qzrt;w>ER=>?eT`e$Ok6=2?=6MCz?` z&r2*hVfI`-cAwP}o279&krNa_ImqMMQasGH%LFB;nzZ;`r$e^nM`6qNdxQNaRXQs+ z^tfW5rmd`hI!1C{dJbS*7D~ilP@!8!tnFVX8RTf28{3L7&1MPRn%Ef{Gb{v<#gj2} zZL{H0?*g}emY5K%e$tW$f>_jiuVNs#6ZyxAWs{2Twk`&*d!GG#y*-2p+CwA%Yj9F= zON*F?-sm-AdK^NVR`qvVJ!KH_ue2z{JCQ!F zU?q}!0-`}1p<`rpUttch`SGZw$t@94nD@%Gp2G`yzki#uj=HPP7+k-|4jOub+63Yf zpg_p+QW%D*x*h~Ufl59ODW^M~HYL}-ep`8D`1GUc#qW0^IGoNfs+AK;MUPg*0!@q) z&)7I1!NqfJ$3b0fLK%0PR3PHI3QqWlCi02wg2UF(A{Sjm+v3hS$KU7Wj&@j!8I<7- zsIx=l00yyjKeQd3e$$8N*^N4pmP%;Ao-szU(=)K{y@;mRh$Q)dDO4XX$YJv(r+wIg z!NHV*iD7-)`e4Y{i0d9!GpLQ^;docj5%rQ*z!ae}#Qww4+sDiz{+q7Mzf%y=xvg!X zXmr_bEZAr9E6Zv7v&*b)0MpIBn|OVtgm$0t@G~u!zlNKA`HucWEHFvy(=6j$e}NL4MSXE;``n<1_O;y{U+u zC3;L~B$AfgbvC#z14+-s1>5$i;yJAu44G*@_-~O3X$(x`sN!2Fw}JgsK5X5k#PK1k z=K=Q*!};T6-$6sFRj0XP23}k&svYnCyiq@rrE%W7&}2E#0S(myw`}|J(7lNr&pT^> zzOj71A&A$Pk!fg_o|cg3TxJS+K+G@JVdVfT%-4z173M}ri+)@NzT4aE;jkbx;6c=a zKsK!uj#wzx{vL0~86R&Puf{hKwyUm?|Aul9&?pOc66&b*=ptTW zr-$i!N6s{RgNo`yKAxnbND_^D*f<%PN4qqZ9#8xGiC-DL4@=pTMl4U8x z;m@*OGxG4V+r;;#o<+m1K*W1KV1B=s;Ao;{vuFcbBQrj_s*4AY>Pz&`cE=0TYb*Ld z{wxZqXu5ZX^!L_|p~FJ&J_ha45I^q|G7GsS#$#U8I5C#lDx19e>?NJo#;;EUjUCF2 zxh%gV*{c1ebJ~6izS0~|qTW^+ZzGL-AbtC@&!Xwovh0&nxdJk)>Ui8%N>_$X){aHG z!tfoA**g)$5#1;1xy&D0YKS+I!xK00QK)+uj3zDlp9cMB<(QQ3?K==MZB#IFO6HUR z)_uaX;u7=1FazcAbGoqFc`e>xQ9e)3=2ThG2nN}kdhUuOr*?5%g~f&99nL{_l>7i9 zo+ZUs%3FGqqG9u>YS#M;v+>Bxe$i#(KjDIB$?k-lZgOn=_8F5)>fsZP1nAymbi_ML zbBb__zt_<(4U%0v9?>jXH+*)%7ch(_KH0*72>D>MG z7#922B5pCWFD<{*CPCWe9-z8fq}~@Ttg@nQQu0F#yj_w*+d!3nw$;QV4BW;Q7hPv! zdQxCALLEx~q@irn>wH?H-wg8|R3{V1D8AH`DM}7OEK|Q_d!#*U0GN*$J^XwL0m*tD zTj#2m8;E{F0T*TFwN#uq>1mbW+j3ER6Gj|Q+yws9f@dn-BENq= z*AfY>Qyn3=tt2N=dE>&~t27bsZ#s$vrJ%uObyvckLy63#kg^7piN-%Ds;95@dh`>5 z%8M?_AI)(}kX6X4weXStvk$F-tGW<1_7r~l`0KS@0sX~Vi}^f?ya!YO_oQK&C~f+> z=fr!`=$zV6 zz25ZOjgx5eoTFb<^8?Sgufzr6_DgX@W`l>ruLZ~O1J9iZ?(Kk+pCQg9CIWok%x>7l zI}Z4n%aj2AG(h_E3|jD2Smw)&={bVcqk_=DG_<~qyo!oSP&FGk5S~c9EPh%R`{vf5 zF2xy~ZGQRyZ!}$_sYuT-nNAiBY~z>QP=ism41hJcoh?=ymD9hbWdT_@&g-IsRO%Le z*lv}N?mD1e>2MZ%7OXfcs3HGhfC&48jzj>~#O+=vw5*%ZoepLG(Bm>xS6mrpYii`` za_6%h>uRI!$fl9I2(kX(EeP%nY%dBl5;-48XBnUo>d4oZ{78@@e^7y%@sJv&dL3)? z!nqGK1&FTxd_`3p>b8l1L9dwnxLJEeS&5b`i6oQ;z zVc21)M*UcFBvb(e^CY@*Q3&<`si(zw8?!zwqpbPiXZvya%>`IVv9KN4vKbjTe4)oH zj(*mqU56r1vAlD%mw%l`w~vg`#2oK z}7C;PbKlh@e!px{hq=>{9-PP>Xh#(iF_1dS6$ z42@kSlh7s-?51uDZ<;&*8~^FoE_h{kDV?ul@}!AfqUf^>C4a|=tWxeeqUAd}Ss}rI zJ0I&_`x_|f^*kd;1vy`@!Tw2}*?QABMaQ(!hRa{AWXGa(2^HMC<{z%PQ>d z&e!FmZ2oS7zDj*vL&H8KoNY9u8miOtjfP;0rzqB@)hulnXWb9~asIlHB$xeas3`-3 z!R{~#L3tk;a+|s38#lp%-6A^Mn%W5~ZNEs6$oryM~sQ zmVJNS8D%SffmIPmDHp&$ntU=>=}|u{MHqEy=$(w5qBe!dMS_jAkUeeUi{oh2sU)=Ddn@Z zFh4_huSL_V%yP@yl#E*4ssZJnn?G%B>by{9537wC$6fKVat#J zXWPwSbKDGI;OK~{*PRmnnO2ltCfjXlLq`6Jtt7vk!t0%*XgzsGfrft08seWwu1IGP zQ)sNf%*$ODmUAAKAiRDcS4V`pxc&0DzPK7@CtXUBQdY7ubC;<<(k_Zx9v5uWM!J1m zy1$%VD5CiKRf&veUo!7CSa@ZH7aMScpr7ZgC#CebO^*7wgYrr1FDt=edGXC3UqS0P zmo8ZL(w>DFQmt!5ISkqFx+mgSF=Qy+2Ftw2=8s!?*|A4v1)KGrAePC{&DuK`Zmj)C z^&|K*E!AsFg{R%8@hY17*HG@H{cqXX*ip+<;NoR`xANHOE=W?exA~qLS9+5}81~#h zX-04ys##Yi@DRN(aRzy|)6P64SZtC4K3*U#l4Lnb^*g9kmb^mA(EZIDhW3(SbvL{E zPrr-_3Y$6hPmsp0lAs$@*XZO`1lWNd@>F@^B zRhvnHJTd0B^x2nyeGx7iwdVL68)R~Xt1RSa`T#$Jr9HWEMy-H7#lHR@R&+;~`x$-` ziYoT@ePw~J;qcM+F>`~63rXbZNs5BJ!qGs?LaX5VL4qS#8$AML!|p`~D%L8XF@@t5 z;PY|>((aqTG}m9D&(FY*pX{&i;s1>cmH)fV-_r~2|9Y3Z|FiTKau{48Wu}o=_>y6M zqDZ^(bJzf7$XV_0XJtjwXj)yc%+)u=;k5LcHkbyycreZJ0m>UKg%@ZGUY3X4-%;1& z8jyT1O_&$hkR8c-Kr-d9RdAjQ5P>7&e~!X;bycEyTh07N;FpA^%OTqr*4M<#Vk6~q z;m+Vl5w*7|X`|IC-x3-tAzl7<1ekom8?BNfHgsds8I~Xw&+cfza|;$A-B5ev`TI|2 z%r+G5_=AI*&cp zm23p_m^te_D7+`h)fwRNMZXd9fsMa)TUn{{Es;MWUe=G3&<(|uebtlL`vfsr`@IKE z+#y^okZn&y0b35Hk=ON~C1H(LKS;m(?72Tm!O3jE?;k%H-o6c=nyB>hW+1HI zN+ViUtw`?;DDu;Q0_vS6$dkSJ+(vbDLMr1z;Tb%fUn03Kjf@c?1oNnp8M(V{Q}~Lc zJ7zo>Bl9CFw5+p&;A&bVUgm!tTrj-_@7Tf zmV;z8E9)I0t)58ZzHr2?;W}7U{zF5Lwcb~KlwIYamLtL! zqESQTd-v+Kf{XNEG(=@S#&qJ^ltVYA$66>@&I|9F=j<%2aXZlv0(ykXDTB~C3wZ8T zWoj#~=Pi?awNSbAOY?0p`f39`7f4xbq7i)`+!^%B*%nx}4+~vz+>+u4<1!GS>J3#C zdCsK4#$P;mElwZt`pT#%kux-0^q=7Ky<=Mh{EVoaTy=B zL?fue>Swq@{~peUvq%49&K4;<{4+daH4>N^81G^u3lMQIN?WiuVjpSj!SQ=OWW(hmj;I#X@>(y{cc3$Y|-zvO#^cu59Miz&fM&Q2IB zjH6k6)p$n`PQJ);OlR`(%bvkE)j!|shFR_3s;g_Vj)oq63Hf8E9(d@KD6XGa{PL1a z)A6IRxxoUAyqB4By}X*Vy`FcKy{SySd?#LZPyhW~vIuY}ggcUxXJ;90zo!JnK31o1 z>Q;-u_!)N&-eR4D!(t(IvR}UC?K7>?MI^7>K4F+H@DW_KA#|5eW2up3=|OIBc6*nu ztO8C8+>$P1x2Pl>#u5{W95?4!%2KEn6&EuO*eFn--3%~5GNW+K3SsrM92rh)6_>Uz zg%%UK1s*|agAX2S3>-O-l&Nhdn&&enPrr&f;}}oVW3?{PD z|6KWCA2#)L3l6;cMM5X$ae|*P(pGoQHrAbM2g(gZQe+V87@b&S&PZ@PbvTxiWIm_h z1{zt_VY`L4%ubadm#DfvgHJ&Z*A&%;>k0nxXUqH&L-O#SvOaNtKJa}J)sY?n?hL5| z^aV@{W#swK?}2Nw4a6>w25(>4w8r`?Ro9)h5>*xJKdX*it{^D!Bnjk9km{eJlFUK- zfi65j=@Nn&5D*XUF^EP)vs4o;JI^4aGiJsBeq|#hq=uqQ;9F&1BIR@(5X2WtJFM3+ zJmDEv2c^IVXzYXrmMdrHvx|qmrPMM@8B!>F-2^$^Fq!*E@7`- zakk1IjeMrE_u(&CWgrqTKqM+WMw<%?gktk&0sfw4fNLtz}v$>2fg@XW$(g8;}x+;v8`mhLbq&JvCLnn?rJK%Imw< zLjKS3QuP8B#pXt?Xm}%(Lqhc($3C=#R)w5RIAPc{LCLCCK!3$X2xl|%0{)_dA<6kW z4be+loFjaq&k@a>q}bD)+*(Gem&H!4pIpNt>1(}GxDM~)kZ0la7q>qlqYBKnTa2Pl_tPs0yl<;&zAq_=lh`WCRI*nP|=4go}NZTFFWo za~y>yI0^<1eKzDg-RXA~xjIoxZDJlHNu++s*VQ&3^alIrg3Je9K$-7}jnd(nLb*s> zarsy+wTiE0wS$a!M5rH`-Tx`=ek

5dCk0m5hG0(273dp7CHf+O~OvD!Vh_N7Y0_ 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 O0000